ok guys i going to show you guys
how updated a table name and how to connect to a database
first we need a connection with connect to a database
Example: tage mush start with [color=red]<?php and end with ;?> with let the server no a php file is coming now let get started.[/color]
we start with
<?php
//then we put mysq_connect with let it no it connecting to something or database.
//now we start with host,username password,
mysq_connect("host","username","password") or die(mysql_error());
//you can echo out a word with display if the connect works
echo"you are connect";
//now we need to select a database
mysq_select_db("dbname") or die (mysql_error());
echo"database is connected";
//now we going to start with the updated reslut part
$reslut =mysql_query(UPDATED users SET email='maleck' WHERE email='gmail.com') or die(mysql_error());
//now we need to select the date
$reslut = mysql_query("SELECT * FROM users WHERE email='gmail.com' ") or die (mysql_error());
//now we need to array the date with echo out the reslut
$row =mysql_fetch_array($reslut);
//now we echo out the date
echo"$row['email'];
?>
now you have a updated file i be adding more later next week