Search Results

Showing results 1 to 40 of 234
Search took 0.02 seconds.
Search: Posts Made By: PoA
Forum: PHP Aug 5th, 2009
Replies: 7
Views: 909
Posted By PoA
Try http://openinviter.com
Forum: PHP Aug 5th, 2009
Replies: 4
Views: 442
Posted By PoA
<?
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location: http://www.your-new-site.com/your-new-url.html" );
?>
Forum: PHP Jul 30th, 2009
Replies: 3
Views: 357
Posted By PoA
Try this code
header('Location: '.$_SERVER['HTTP_REFERER']);
Forum: PHP Jul 17th, 2009
Replies: 2
Views: 302
Posted By PoA
It's called Aggregator. You can google "RSS Aggregator" or "PHP Aggregator"
Forum: PHP Jul 17th, 2009
Replies: 7
Views: 442
Posted By PoA
Copy the following code into the file called "sample.php" It should work.


<?php

print "<pre>";
print_r($_POST);
print_r($_REQUEST);
print "</pre>";
Forum: PHP Jul 17th, 2009
Replies: 7
Views: 442
Posted By PoA
You need to insert url for form action.

<?php

print "<pre>";
print_r($_POST);
print_r($_REQUEST);
print "</pre>";

print "<form action='<destination-url>.php' method='post'>
Forum: PHP Nov 29th, 2008
Replies: 1
Views: 333
Posted By PoA
WordPress http://www.wordpress.com
Forum: PHP Nov 15th, 2008
Replies: 3
Views: 1,855
Posted By PoA
Post your code. We cant tell the problems unless you post your codes.
Forum: Growing an Online Community Nov 9th, 2008
Replies: 8
Views: 4,140
Posted By PoA
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 Oct 31st, 2008
Replies: 3
Views: 1,535
Posted By PoA
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 Oct 26th, 2008
Replies: 2
Views: 689
Posted By PoA
Do you get any errors? Try to use the full path /your/server/path/to/your/application

Full codes will be appreciated.
Forum: PHP Oct 17th, 2008
Replies: 2
Views: 521
Posted By PoA
IDE: Eclipse
Server: Apache, PHP, MySQL. Try xampp or wamp as buddylee17 suggested.
Forum: PHP Oct 17th, 2008
Replies: 3
Views: 546
Posted By PoA
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: 639
Posted By PoA
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: 645
Posted By PoA
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. E.g.,
...
Forum: PHP Oct 13th, 2008
Replies: 4
Views: 603
Posted By PoA
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: 645
Posted By PoA
Post your codes in code tag. Have you tried chmod 777 on destination folder?
Forum: PHP Oct 13th, 2008
Replies: 3
Views: 486
Posted By PoA
Try http://www.openx.org
Forum: PHP Oct 6th, 2008
Replies: 1
Views: 327
Posted By PoA
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: 2,060
Posted By PoA
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: 310
Posted By PoA
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: 677
Posted By PoA
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
Solved: Syntax Errors
Views: 2,255
Posted By PoA
It would be better if you put your code in code tag. Easier to look through.
Forum: PHP Oct 4th, 2008
Replies: 1
Views: 472
Posted By PoA
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: 691
Posted By PoA
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: 673
Posted By PoA
Try
http://atmail.org
http://roundcube.net
Forum: PHP Oct 2nd, 2008
Replies: 9
Views: 687
Posted By PoA
$date = '2008-09-29';
$newDate = date('d-m-Y', strtotime($date));
Forum: IT Professionals' Lounge Sep 30th, 2008
Replies: 8
Views: 2,283
Posted By PoA
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: 687
Posted By PoA
Replace dots with dashes. Try below.
$mydate=date("$year-$month-$day");
Forum: PHP Sep 30th, 2008
Replies: 3
Views: 4,039
Posted By PoA
Try using @ in front of function name.
@fopen
@fread
@fclose
Forum: PHP Sep 21st, 2008
Replies: 10
Views: 1,583
Posted By PoA
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: 1,583
Posted By PoA
You need to chmod the folder with 0777 permission where you want to fwrite.
Forum: PHP Sep 20th, 2008
Replies: 2
Views: 593
Posted By PoA
http://www.comptechdoc.org/independent/web/cgi/javamanual/javahistory.html
Forum: PHP Sep 20th, 2008
Replies: 1
Views: 411
Posted By PoA
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: 591
Posted By PoA
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: 626
Posted By PoA
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: 751
Posted By PoA
Check on fetch(). What does it actually return?
Forum: PHP Sep 20th, 2008
Replies: 7
Views: 1,041
Posted By PoA
setcookie('cookie_name', time() - 42000);
Forum: PHP Sep 20th, 2008
Replies: 5
Views: 591
Posted By PoA
Check database table. What's its collation? UTF8_*?
Forum: PHP Sep 5th, 2008
Replies: 2
Views: 499
Posted By PoA
Try this http://recaptcha.net/
Showing results 1 to 40 of 234

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC