Forum: PHP Aug 13th, 2009 |
| Replies: 5 Views: 351 Yes, it seems they have created a nice API, you should explore this also.
This is where comet will be useful :) |
Forum: PHP Aug 13th, 2009 |
| Replies: 3 Views: 189 Your problem is having two part:
1. Upload the image and its detail.
2. Search the image.
Take one part at a time and solve it, please do post the problem you face. |
Forum: PHP Aug 13th, 2009 |
| Replies: 5 Views: 351 Try Comet (http://en.wikipedia.org/wiki/Comet_(programming)). |
Forum: PHP Aug 12th, 2009 |
| Replies: 3 Views: 189 |
Forum: PHP Aug 12th, 2009 |
| Replies: 4 Views: 280 during changing password you dont have to send user name and password to client, instead just ask current password and new password to the user, take those password to server and validate the current... |
Forum: PHP Aug 11th, 2009 |
| Replies: 1 Views: 233 You can go for image buttons, and represent a button by two images. First image will be for normal state of button and second image will be for push state. you can search more about it in google.
... |
Forum: PHP Aug 11th, 2009 |
| Replies: 1 Views: 209 this is not the correct forum for this question. |
Forum: PHP Aug 11th, 2009 |
| Replies: 4 Views: 280 are you asking about how to send user name and password to server with security ? |
Forum: PHP Aug 7th, 2009 |
| Replies: 5 Views: 386 do this:
1. Fetch the data from data base.
2. Have a loop to fill the data in array.
Post the code what ever you have done so far, for better help. |
Forum: PHP Aug 4th, 2009 |
| Replies: 3 Views: 336 Hi,
I guess server side you can set the values of the field. |
Forum: PHP Aug 2nd, 2009 |
| Replies: 2 Views: 285 Hi,
I am giving algo to do the job:
1. Sort the table row by Item ID.
2. Take two array arrayItemId to store Item Id and arrayAmountSum to store sum of amount.
3. Now look throw the data base... |
Forum: PHP Mar 12th, 2008 |
| Replies: 6 Views: 610 hi
this is because $result doesnot contain resource.
after $result = mysql_query($query);
put following code
if (!$result) {
die('Invalid query: ' . mysql_error());
}
it will not... |
Forum: PHP Mar 7th, 2008 |
| Replies: 11 Views: 1,012 hi
try this example:
suppose you want following to be done:
[]record1
[]record2
here [] is check box
then do following to get above:
1.suppose you have two variable $rec1 and $rec2 which... |
Forum: PHP Feb 7th, 2008 |
| Replies: 29 Views: 3,312 its not good to put info into url which u dont want others to know. |
Forum: PHP Feb 7th, 2008 |
| Replies: 6 Views: 640 for ie use
document.execCommand("Stop"); |
Forum: PHP Feb 7th, 2008 |
| Replies: 6 Views: 640 this doesnot works in IE. |
Forum: PHP Feb 7th, 2008 |
| Replies: 6 Views: 640 reduce the size of pages... |