Forum: PHP 3 Days Ago |
| Replies: 3 Views: 114 |
Forum: Growing an Online Community 9 Days Ago |
| Replies: 7 Views: 2,246 Re: Are my forum rules good To me, I would set less rules which affects main points. Of course, if your forum is getting popular, it's good to set many rules. |
Forum: PHP 17 Days Ago |
| Replies: 3 Views: 241 Re: problem with file_get_contents? It depends on the site that you are trying to retrieve content. If the site is loading slow, then it can affect on your retrieval of content. |
Forum: PHP 23 Days Ago |
| Replies: 2 Views: 176 |
Forum: PHP 31 Days Ago |
| Replies: 2 Views: 174 |
Forum: PHP 31 Days Ago |
| Replies: 3 Views: 208 Re: DaniWeb's Interesting URL System It's called mod_rewrite, which is an Apache module. It allows you to rewrite the requested urls.
You should read more about it here
http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html |
Forum: PHP Oct 13th, 2008 |
| Replies: 7 Views: 267 Re: PHP Statement ? Why don't you use COUNT in sql statement instead?
$qry = mysql_query("SELECT COUNT(*) FROM data_table WHERE page='$page'",$dbh); |
Forum: PHP Oct 13th, 2008 |
| Replies: 3 Views: 250 Re: Simple upload script not working move_uploaded_file($_FILES['news1']['tmp_name'], 'files/news1.jpg');
Replace files/news1.jpg with the path + image name. You need to use the full path.... |
Forum: PHP Oct 13th, 2008 |
| Replies: 4 Views: 286 Re: Longer development time in PHP? It's not true that ColdFusion will cut down your development time. If you need faster development time, you should try Frameworks such as CakePHP, CodeIgniter, Symphony. You will know the speed of... |
Forum: PHP Oct 13th, 2008 |
| Replies: 3 Views: 250 |
Forum: PHP Oct 13th, 2008 |
| Replies: 3 Views: 181 |
Forum: PHP Oct 6th, 2008 |
| Replies: 1 Views: 146 Re: user/admin interaction Data should be stored in the database.
Inform user if admin makes any changes in database. Send changes via email to user. |
Forum: PHP Oct 6th, 2008 |
| Replies: 2 Views: 291 Re: Php logout Clear cookie or session. If session or cookie is invalid, then redirect user to log-in page. |
Forum: PHP Oct 6th, 2008 |
| Replies: 1 Views: 131 |
Forum: PHP Oct 5th, 2008 |
| Replies: 5 Views: 237 |
Forum: PHP Oct 4th, 2008 |
| Replies: 31 Views: 1,002 Re: Syntax Errors It would be better if you put your code in code tag. Easier to look through. |
Forum: PHP Oct 4th, 2008 |
| Replies: 1 Views: 167 Re: 30-11-1999 Help Me It comes from null value of date field.
Option 1
If user don't insert date, then you should do validation which forces user to input date.
Option 2
Insert default date if user do not input. |
Forum: PHP Oct 3rd, 2008 |
| Replies: 6 Views: 308 Re: ASP - PHP - JSP ... which is better? It's not true that JSP is much more secured. It totally depends on the developer of the application.
My preference is PHP for web applications. As for desktop application, I prefer Java or... |
Forum: PHP Oct 2nd, 2008 |
| Replies: 4 Views: 263 |
Forum: PHP Oct 2nd, 2008 |
| Replies: 9 Views: 312 Re: DATE problem $date = '2008-09-29';
$newDate = date('d-m-Y', strtotime($date)); |
Forum: Web Developers' Lounge Sep 30th, 2008 |
| Replies: 8 Views: 1,198 Re: Java or DotNet ???????? Since you are familiar with Java, I suggest you should go with Java. Different people prefers different languages.
I agree with others saying that Java is widely used. Since it's free and no... |
Forum: PHP Sep 30th, 2008 |
| Replies: 9 Views: 312 Re: DATE problem Replace dots with dashes. Try below.
$mydate=date("$year-$month-$day"); |
Forum: PHP Sep 30th, 2008 |
| Replies: 2 Views: 547 |
Forum: PHP Sep 21st, 2008 |
| Replies: 10 Views: 590 |
Forum: PHP Sep 20th, 2008 |
| Replies: 10 Views: 590 |
Forum: PHP Sep 20th, 2008 |
| Replies: 2 Views: 260 |
Forum: PHP Sep 20th, 2008 |
| Replies: 1 Views: 203 Re: Login Form Take a look at
http://www.phpeasystep.com/workshopview.php?id=6
Verification email is sent after successful registration. |
Forum: PHP Sep 20th, 2008 |
| Replies: 5 Views: 262 |
Forum: PHP Sep 20th, 2008 |
| Replies: 2 Views: 288 Re: string manipulation Try
explode('"', 'sudaneseonline.com/cgi-bin/posting/posting"sometex');
You'll get the string up to double quotes ". |
Forum: PHP Sep 20th, 2008 |
| Replies: 8 Views: 370 |
Forum: PHP Sep 20th, 2008 |
| Replies: 6 Views: 359 |
Forum: PHP Sep 20th, 2008 |
| Replies: 5 Views: 262 |
Forum: PHP Sep 5th, 2008 |
| Replies: 2 Views: 227 |
Forum: PHP Aug 25th, 2008 |
| Replies: 1 Views: 359 |
Forum: PHP Aug 25th, 2008 |
| Replies: 3 Views: 253 Re: Error: not displaying messages... You need to use setcookie http://php.net/setcookie
After setting cookie in user's browser, then you can check whether user has the cookie.
Hope it helps. |
Forum: PHP Aug 20th, 2008 |
| Replies: 2 Views: 198 Re: please help me Call the below function when you want to delete the message.
function deleteMessage($msgID) {
$result = mysql_query('DELETE FROM inbox WHERE id = ' . $msgID );
if($result)
... |
Forum: PHP Aug 19th, 2008 |
| Replies: 3 Views: 241 |
Forum: PHP Aug 19th, 2008 |
| Replies: 1 Views: 239 |
Forum: PHP Aug 19th, 2008 |
| Replies: 2 Views: 189 Re: what is session Read about session at http://php.net/session It's helpful with example codes. |
Forum: PHP Apr 26th, 2006 |
| Replies: 5 Views: 2,930 |