Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~7K People Reached
Favorite Forums
Favorite Tags

7 Posted Topics

Member Avatar for siva28

I have a solution to this but it is intended for a form using select boxes... Is this what your looking for? And my solution is for counties and cities in England.

Member Avatar for sameer.javed.10690
0
445
Member Avatar for Metophase

[CODE] <?php $oldumask = umask(0); mkdir($url, 0777); umask($oldumask); $myFile = $url."/index.php"; $fh = fopen($myFile, 'w') or die("can't open file"); $stringData ="lots of things"; ?> [/CODE] Why am I not being allowed to write files to my website, it was recently working, my host had some technical issues yesterday,, and now …

Member Avatar for Metophase
0
178
Member Avatar for abhinav1986

Ya AJAX is the answer, follow these steps. 1, learn the JavaScript that calls an X ML and prepares itself to receive information from the server 2, define where you'd like the response to be displayed 3, Call your php page(server side script) using GET and the url with the …

Member Avatar for abhinav1986
0
4K
Member Avatar for klemme

in your fist php file you have echo'd a select box open, all its values, then a select box close, why not echo where you want the second response to go followed by the results of a second sql query, Yours span can cover multiple select boxes and text boxes …

Member Avatar for klemme
0
2K
Member Avatar for Metophase

Hey looking over sessions was confusing the hell out of me but I found my solution again on this forum... now I have a session that as a time out and 'logs out' the user after 10 mins so next time they try do something it takes them to the …

Member Avatar for veedeoo
0
203
Member Avatar for shujat132

[CODE]$query = "INSERT INTO coments VALUES('', '$id', '$name','$email','$textArea')";[/CODE] isn't coments suppose to be comments, and i find it always best to name the columns [CODE]$query = "INSERT INTO comments ('col1','col2','col3','col4','col5') VALUES ('$var1','$var2','$var3','$var4','$var5')";[/CODE]

Member Avatar for Metophase
0
220
Member Avatar for Metophase

Hey guys whilst I was trying to solve this issue I came across your thread which I found helpful to an extent, basically I spent hours reading up and realised that the solutions you provided doesn't do what you actually wanted it to do so here I offer my solution. …

Member Avatar for Taywin
0
252

The End.