Forum: PHP 28 Days Ago |
| Replies: 3 Views: 338 i believe this generally means that the search of the database is not returning any result... or something along those lines...
you could try adding a catch after the mysql_query's
something... |
Forum: PHP May 30th, 2009 |
| Replies: 6 Views: 1,785 you could also take the input from the mysql as a string, trim out the space in between the words and set it as lowercase letters:
to remove spaces
$mysqldata = 'Blue Bird';
$mysqldata =... |
Forum: PHP May 2nd, 2009 |
| Replies: 2 Views: 332 hmm, ok, i changed it so its a little different and now it will only include the files which are on the server, under the includes directory, and those files only operate if you are logged in, eg the... |
Forum: PHP May 2nd, 2009 |
| Replies: 2 Views: 332 I like to script php, and lately i was looking for a way to create a 100% dynamic page in php, with the least possible overhead and create a rich user experiance.
I say this is a "New" PHP... |
Forum: PHP Apr 22nd, 2009 |
| Replies: 2 Views: 391 I included a file in one of my sites via an iframe (simplest solution and by FAR not permanent), just to get a feel for the way it might look on the site
However, after adding the iframe to the... |
Forum: PHP Apr 13th, 2009 |
| Replies: 5 Views: 1,490 i know.
this was my first script, as such i was working piece by piece, the entire script is now split into a couple different files, and the database houses a few different hashed passwords.
... |
Forum: PHP Mar 31st, 2009 |
| Replies: 5 Views: 1,490 ok, i found the problem, it was just a missing }
i tried that once, but it kept redirecting me to the same page i was on, so i thaught something else should go there...
the place i messed up is... |
Forum: PHP Mar 30th, 2009 |
| Replies: 5 Views: 1,490 WARNING
huge php script, watch your head
/WARNING :D
Ok, i want to start by saying that this is part of a free script im making and therefor may be used by anyone, the script if available at:... |
Forum: PHP Mar 9th, 2009 |
| Replies: 2 Views: 211 <table border="1"> <tr> <td>Date/Time<td>Name<td>Message</tr>
<?php
$con = mysql_connect("localhost","root","ascent");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
... |
Forum: PHP Mar 8th, 2009 |
| Replies: 2 Views: 211 UPDATE i have made the form in html, linked it to the updater...
so i can get the changelog in the database, the columns are as follows, followed by an example
Number (Auto Increment Field also... |
Forum: PHP Mar 8th, 2009 |
| Replies: 2 Views: 211 Hello Daniweb community
firstly i would like to thank you for reading this
So i am working on a server for a friend of mine, and i am fairly new to PHP, the server is at ambience.selfip.org
... |