php

testerpage9450

New Member
Messages
1
Reaction score
0
Points
0
I'm using php on my domain and it seems to not be changing my email in a table I have created. Any suggestion to fix this problem? Thank you.
 

smithee

New Member
Messages
45
Reaction score
2
Points
0
Hi testerpage9450, welcome to the forums! When you refer to "table", are you on about tables stored on the server (such as MySQL tables, which only you can view), or a table you've created on your web page that will be shown on web browsers? If possible, can you provide us with a bit more detail about your problem, as it seems a bit vague and hard to understand what you're exactly trying to achieve.
 

froger

New Member
Messages
49
Reaction score
0
Points
0
I'm using php on my domain and it seems to not be changing my email in a table I have created. Any suggestion to fix this problem? Thank you.

If you are wanting to update a table you can do something along the lines of this...

$query = mysql_query("UPDATE TABLE name SET Email='billybob@aol.com' WHERE Email='old-email@yahoo.com'");
 
Top