Jump to content

Partyz

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Partyz's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Video tutorials you will find at killerphp.com. Also read this forum and PHP tutorial
  2. Partyz

    php form

    Maybe try to read php form tutorial
  3. I liked it very much. Good job! I used php forms, but yours is worth attention too
  4. As I remember from php tutorial to connect from a PHP script, just put this in your file: <? mysql_connect("DBSERVER", "DBUSERNAME", "DBPASSWORD"); mysql_select_db("DBNAME"); ?> using the following substitutions for the bold terms as above, plus substituting DBPASSWORD with your own mysql password: * Replace DBSERVER with the correct database servername for your site. * Replace DBUSERNAME with your own mysql username. * Replace DBNAME with your own mysql databasename. The connection will be closed automatically when the script ends. To close the connection before, use the mysql_close() function: <?php $con = mysql_connect("localhost","peter","abc123"); if (!$con) { die('Could not connect: ' . mysql_error()); } // some code mysql_close($con); ?>
  5. Hi. I have a php form which uses captcha. How can I know how much safe it is . And what captcha can you recommend? Thanks in advance
×
×
  • 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.