Recent content by AnonymousJohn

  1. A

    What is AJAX and PHP when it comes to retrieving data and what about jQuery? Argh?

    MySQL is a storage database, PHP can interface with it very easily using Queries like "SELECT * FROM $table." CSS is a stylesheeting language. It allows a developer to easily ad certain properties to elements of his webpage, without hard coding them. (X)HTML is the standard for web development...
  2. A

    What is AJAX and PHP when it comes to retrieving data and what about jQuery? Argh?

    MySQL is a storage database, PHP can interface with it very easily using Queries like "SELECT * FROM $table." CSS is a stylesheeting language. It allows a developer to easily ad certain properties to elements of his webpage, without hard coding them. (X)HTML is the standard for web development...
  3. A

    What is AJAX and PHP when it comes to retrieving data and what about jQuery? Argh?

    MySQL is a storage database, PHP can interface with it very easily using Queries like "SELECT * FROM $table." CSS is a stylesheeting language. It allows a developer to easily ad certain properties to elements of his webpage, without hard coding them. (X)HTML is the standard for web development...
  4. A

    Please help on the below php code i get error on line 35?

    It would be helpful to identify which line is causing problems. echo "<tr><td>".$label."</td>"; --> echo "<tr><td>" . $label . "</td>"; try that for starters, i think that might be around 35.
  5. A

    PHP code question??? (Filler)?

    If have this if statement: if ( $mypassword != $passconf) { ?> <script type='text/javascript' > alert('The two passwords did not match!'); </script> <?php header("location:../register.php"); } When the page runs after I register a user, if the passwords do not match, the header redirects the...
Back
Top