Jump to content

Matthew Rotherham

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Matthew Rotherham's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. [!--quoteo(post=367768:date=Apr 23 2006, 03:10 PM:name=Yesideez)--][div class=\'quotetop\']QUOTE(Yesideez @ Apr 23 2006, 03:10 PM) [snapback]367768[/snapback][/div][div class=\'quotemain\'][!--quotec--] Slight oversight - change this line: $query = $_POST(['query']); to this: $query = $_POST['query']; [/quote] Works like a charm! Thanks.
  2. [!--quoteo(post=367763:date=Apr 23 2006, 02:56 PM:name=Yesideez)--][div class=\'quotetop\']QUOTE(Yesideez @ Apr 23 2006, 02:56 PM) [snapback]367763[/snapback][/div][div class=\'quotemain\'][!--quotec--] Try this... [code]<? if ($_POST['submit']) {   $query = $_POST(['query']);   include("connect.php");   $sql = "INSERT INTO `User` (`name`) VALUES ('$query')";   mysql_query($sql);   mysql_close();   echo "$query has been recorded!"; } ?> <form method="POST" action="index.php"> <input type="text" name="query"> <input type="submit" value="Submit" name="submit"> </form> [/code] AllI did was move the PHP to the start of the file, add a quote into your HTML section and remove the quotes around the $_POST bit. Then I surrounded the lot with an if() statement to only run the code if the submit button was pressed. [/quote] I did as exactly as you said, and I got this... Parse error: parse error, unexpected '[', expecting ')' in /home/www/shaolinwars.awardspace.com/index.php on line 3
  3. When I submit the form, I get... Array(['query']) has been recorded! When I check the database, nothing has been recorded. The code is... <form method="POST" action="index.php"> <input type="text name="query"> <input type="submit" value="Submit" name="submit"> </form> <? $query = "$_POST(['query'])"; include("connect.php"); $sql = "INSERT INTO `User` (`name`) VALUES ('$query')"; mysql_query($sql); mysql_close(); echo "$query has been recorded!"; ?> What is the problem, please?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.