Forum: PHP Jul 21st, 2009 |
| Replies: 9 Views: 497 echo ur query did you get any results
echo $mysql_query;
copy that query and run in phpmyadmin,, did it works or not |
Forum: PHP Jul 21st, 2009 |
| Replies: 9 Views: 497 if(isset ($_GET['id']))
{
//code here
}
juist missing "(" for isset. |
Forum: PHP Jul 14th, 2009 |
| Replies: 5 Views: 421 //try out this function
function limit_words($text, $limit) {
$text = strip_tags($text);
$words = str_word_count($text, 2);
$pos = array_keys($words);
if (count($words) >... |
Forum: PHP Jul 2nd, 2009 |
| Replies: 7 Views: 1,074 This is because of your apache web server is not configured properly.
You should look at the httpd.conf file for apache and change its default port to 8080 if IIS is running on your machine. As... |