- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
7 Posted Topics
Re: 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. | |
[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 … | |
Re: 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 … | |
Re: 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 … | |
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 … | |
Re: [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] | |
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. … |
The End.