Page 6 of 7
Re: Video #18
Posted: Sat Feb 20, 2010 6:53 pm
by ier
when are the nieuw videos coming ?????
Re: Video #18
Posted: Sat Feb 20, 2010 10:05 pm
by hallsofvallhalla
christmas...
heheh just kidding. I am a little behind I know. I am behind on IR gold also. I go caught up in creating Quest Of Crocania that i am behind. This game has been a bit of inspiration for me and when I am in such a creative mood I got to stay with it
I am going to try to have out some videos tomorrow.
Re: Video #18
Posted: Sat Feb 20, 2010 10:41 pm
by jpoisson
Great to hear, I am looking forward to the next release.
Re: Video #18
Posted: Sun Feb 21, 2010 11:20 am
by ier
oké thanks
i em goingen to make a forum for on my game i wil gef the scripts if it works
Re: Video #18
Posted: Sun Feb 21, 2010 11:57 am
by ier
i em ready it is not a forum but a guestbook here are the scripts
i only got 3 fould in it
Notice: Undefined index: naam in C:\wamp\www\game\gastenboek.php on line 11
Notice: Undefined index: email in C:\wamp\www\game\gastenboek.php on line 12
Notice: Undefined index: commentaar in C:\wamp\www\game\gastenboek.php on line 13
gastenboek.php
Code: Select all
<html>
<head>
<title>guestbook</title>
</head>
</html>
<?php
$naam=$_POST['naam'];
$email=$_POST['email'];
$commentaar=$_POST['commentaar'];
echo "<H2>gastenboek</H2>\n";
echo "<form action=\"$_SERVER[PHP_SELF]\" method=\"post\">\n";
echo "<p>Uw naam : <input type=\"text\" name=\"naam\"></p>\n";
echo "<p>Uw E-mail : <input type=\"text\" name=\"email\"></p>\n";
echo "<p>Uw commentaar :</p>\n";
echo "<textarea cols=\"55\" rows=\"5\" wrap=\"soft\" name=\"commentaar\"></textarea><br>\n";
echo "<p><input type=\"submit\" value=\"Commentaar verzenden\"></p>\n";
echo "<hr>\n";
echo "<p><h2>Reeds geleverde commentaar</h2></p>\n";
$tekstfile="commentaar.txt";
if (isset($commentaar) && 'naam' != "" && 'email' != "") {
$pointer=fopen($tekstfile,"r+");
$oudcommentaar=fread($pointer,filesize($tekstfile));
$email="<a href=\"mailto:$email\">$email</a>";
$date=date("j.n.Y");
$commentaar=htmlspecialchars($commentaar);
$commentaar=stripslashes(nl2br($commentaar));
$geschreven="<p><strong>$naam</strong> ($email) heeft geschreven op <i>$date</i> :
<br><br>$commentaar</p><hr>\n";
rewind($pointer);
fputs($pointer,"$geschreven\n$oudcommentaar\n");
}
readfile($tekstfile);
?>
this is commentaar.txt
Re: Video #18
Posted: Sun Feb 21, 2010 4:06 pm
by ier
hallsofvallhalla i got a qoustjen on your post your scipts are somtimes older now i ask my own how do you update these scripts then
* Report this post
* Reply with quote
Re: Video #18
Postby hallsofvallhalla » Mon Jan 18, 2010 8:11 pm
well some scripts are php 4 or older so you have to update them. I use scripts very very rarely.
Re: Video #18
Posted: Sun Feb 21, 2010 5:25 pm
by hallsofvallhalla
my scripts are not old, i mean the ones you find on the internet. I have done all my tuts on php5. If you know of one that is not compatible let me know. Thanks
Re: Video #18
Posted: Mon Feb 22, 2010 4:10 pm
by ier
ow i ondrestand you wrong i think
Re: Video #18
Posted: Mon Feb 22, 2010 8:28 pm
by zolacat999
Does any know where to place the SQL database dump on a mac?
Re: Video #18
Posted: Mon Feb 22, 2010 9:34 pm
by Jackolantern
zolacat999 wrote:Does any know where to place the SQL database dump on a mac?
This may show my complete ignorance about Macs, but can't you just use the import tab in PHPMyAdmin? Do you have PHPMyAdmin on Mac installations?