Hey I actually have two questions. 1. How do you put this into PHP? <td height="1"> It just wouldn't let me. Also how do you put <a href="blank.php?name=%s>%s</a> into PHP? 2. Whats the best way to do this.. I need to get the date they put it in, then I need it to add 14 days to the date and insert it into a database. How would I then see if a date is outdated and it just not show up or even delete it from the database would be better? Also COOKIES CANNOT BE USED. I cannot explain it very well. Sorry. Hope this could be answered. Thank you! Chad R. Smith
Offers Fake Help:
1. echo and make those " into '
echo "<td height='1'>";
2. printf functions
printf("<a href='blank.php?name=%s>%s</a>\n", "stuff");
What does Too Few Arugments mean? Also so your saying that I just cannot have an " like in <a href="blank.php"> I cannot have the " so it would be <a href='blank.php'>??? Would that be it? So back to my error I am getting this error: Warning: printf(): too few arguments in c:\program files\apache group\apache\htdocs\saintparis\classout.php on line 22
What does that mean?
Chad
More fake help:
1) echo '<td height="1">'; OR echo "<td height=\"1\">";
2) Too few arguments: You have two slots to put strings (%s), but only one string to put in them ("stuff"). What do you want to go in the other one?