User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 455,994 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,775 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 226
Search took 0.02 seconds.
Posts Made By: PoA
Forum: PHP 3 Days Ago
Replies: 3
Views: 114
Posted By PoA
Re: POST data submit in page refresh

Post your code. We cant tell the problems unless you post your codes.
Forum: Growing an Online Community 9 Days Ago
Replies: 7
Views: 2,246
Posted By PoA
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
Posted By PoA
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
Posted By PoA
Re: how to upload a file less in IIS server using php

Do you get any errors? Try to use the full path /your/server/path/to/your/application

Full codes will be appreciated.
Forum: PHP 31 Days Ago
Replies: 2
Views: 174
Posted By PoA
Re: where to start php

IDE: Eclipse
Server: Apache, PHP, MySQL. Try xampp or wamp as buddylee17 suggested.
Forum: PHP 31 Days Ago
Replies: 3
Views: 208
Posted By PoA
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
Posted By PoA
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
Posted By PoA
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
Posted By PoA
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
Posted By PoA
Re: Simple upload script not working

Post your codes in code tag. Have you tried chmod 777 on destination folder?
Forum: PHP Oct 13th, 2008
Replies: 3
Views: 181
Posted By PoA
Re: Ad Management in PHP??

Try http://www.openx.org
Forum: PHP Oct 6th, 2008
Replies: 1
Views: 146
Posted By PoA
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
Posted By PoA
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
Posted By PoA
Re: urgently need help.....pliz...

Please write in more details about error where you get. Which line? Please put your code in php code tags in order to help you better.
Forum: PHP Oct 5th, 2008
Replies: 5
Views: 237
Posted By PoA
Re: Increasing PHP Instructions Per Second

Assume you have hardware that meets to run your script.

If so,
1. Optimize your SQL.
2. Install memcache extension in PHP.

Hope it helps.
Forum: PHP Oct 4th, 2008
Replies: 31
Views: 1,002
Posted By PoA
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
Posted By PoA
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
Posted By PoA
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
Posted By PoA
Re: Mail Server

Try
http://atmail.org
http://roundcube.net
Forum: PHP Oct 2nd, 2008
Replies: 9
Views: 312
Posted By PoA
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
Posted By PoA
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
Posted By PoA
Re: DATE problem

Replace dots with dashes. Try below.
$mydate=date("$year-$month-$day");
Forum: PHP Sep 30th, 2008
Replies: 2
Views: 547
Posted By PoA
Re: [function.fopen]: failed to open stream

Try using @ in front of function name.
@fopen
@fread
@fclose
Forum: PHP Sep 21st, 2008
Replies: 10
Views: 590
Posted By PoA
Re: fwrite and fclose Error

You can do chmod using your FTP client. Right click on the folder/files that you need to set permissions.
Forum: PHP Sep 20th, 2008
Replies: 10
Views: 590
Posted By PoA
Re: fwrite and fclose Error

You need to chmod the folder with 0777 permission where you want to fwrite.
Forum: PHP Sep 20th, 2008
Replies: 2
Views: 260
Posted By PoA
Re: User defined back/forward buttons

http://www.comptechdoc.org/independent/web/cgi/javamanual/javahistory.html
Forum: PHP Sep 20th, 2008
Replies: 1
Views: 203
Posted By PoA
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
Posted By PoA
Re: Funny-crazy problem with PHP

You need to convert input search data to html entities before you find in database. php.net/htmlentities
Forum: PHP Sep 20th, 2008
Replies: 2
Views: 288
Posted By PoA
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
Posted By PoA
Re: My IF ($email_settings == "0") isnt working! :(

Check on fetch(). What does it actually return?
Forum: PHP Sep 20th, 2008
Replies: 6
Views: 359
Posted By PoA
Re: Cookies not being deleted

setcookie('cookie_name', time() - 42000);
Forum: PHP Sep 20th, 2008
Replies: 5
Views: 262
Posted By PoA
Re: Funny-crazy problem with PHP

Check database table. What's its collation? UTF8_*?
Forum: PHP Sep 5th, 2008
Replies: 2
Views: 227
Posted By PoA
Re: need code for security images

Try this http://recaptcha.net/
Forum: PHP Aug 25th, 2008
Replies: 1
Views: 359
Posted By PoA
Re: Creating an e-mail system using MySQL for a local intranet

Take a look at here. http://roshanbh.com.np/2007/12/sending-e-mail-from-localhost-in-php-in-windows-environment.html
Forum: PHP Aug 25th, 2008
Replies: 3
Views: 253
Posted By PoA
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
Posted By PoA
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
Posted By PoA
Re: having trouble in connecting mysql with php

Please post your code or else follow langsor's example.
Forum: PHP Aug 19th, 2008
Replies: 1
Views: 239
Posted By PoA
Re: needed help- fail to load PHP module (installing apache)

The correct path should be c:/Web/PHP5/php5apache2.dll
Forum: PHP Aug 19th, 2008
Replies: 2
Views: 189
Posted By PoA
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
Posted By PoA
Re: HTML Form post to PHP?

http://www.tizag.com/phpT/examples/formex.php
Showing results 1 to 40 of 226

 
All times are GMT -4. The time now is 9:40 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC