Forum: PHP Aug 12th, 2008 |
| Replies: 5 Views: 641 By God, How did I miss that?
Thanks buddy.
Bye! |
Forum: PHP Aug 10th, 2008 |
| Replies: 5 Views: 641 Hey,
I think you should use something like this.
This is how a link is dynamically generated in PHP.
Hope this helps! |
Forum: PHP Aug 10th, 2008 |
| Replies: 7 Views: 583 Hi,
It seems you have got two different questions here.
1. How to go back.
Here, you can either use two forms as suggested above, Using javascript is not recommended. Another solution would... |
Forum: PHP Jul 23rd, 2008 |
| Replies: 4 Views: 353 Hi,
Shanti is very much right. You should just rephrase it. Declare a separate variable.
$selection = $_REQUEST['select'];
if($selection != null)
... Insert into database;
That's it! You... |
Forum: Python Jul 23rd, 2008 |
| Replies: 4 Views: 503 Hi,
I think it is not Python you are interested in. It's just it's already been installed on your machine you want to learn python. I do not have any thing personal against python, you can go with... |
Forum: PHP Jul 18th, 2008 |
| Replies: 2 Views: 467 Hi,
It's very much possible to do in PHP also. Please post the exact query you are using. For help on how to delete specific records from a database table please refer... |
Forum: PHP Jul 18th, 2008 |
| Replies: 6 Views: 689 Hi,
With while we can read only row by row. Anyways, it seems you want to search the email into friend_email. Another alternative would be query the friends email table for each email.
In any... |
Forum: JavaScript / DHTML / AJAX Jul 16th, 2008 |
| Replies: 4 Views: 3,960 Hi,
You can rephrase your onclick event handling like this.
onClick="document.form1.tags.value +=document.form1.tagmenu.options[document.form1.tagmenu.selectedIndex].value;
Here, I'm... |
Forum: JSP Jul 16th, 2008 |
| Replies: 2 Views: 4,113 Hey buddy,
The text is missing there. The code should be something like
out.println(
"<a href=\"ozCmnDeleteEntity.jsp?objType=PROJECT&objId="+prj.getProjectId()+"\">");
... |
Forum: PHP Jul 16th, 2008 |
| Replies: 7 Views: 1,077 Hi,
This query might still have a little problem with the date field! Best thing would be to strip the query of date field, try the update query. When it works fine go for date.
Bye! |
Forum: PHP Jul 16th, 2008 |
| Replies: 7 Views: 1,456 Hi,
This is what happens in drupal where the url like example.com/index.php?id=john is automatically converted into example.com/john. This actually is done by the server itself. so as suggested... |
Forum: PHP Jul 15th, 2008 |
| Replies: 7 Views: 1,077 Hi,
I think you need to use wild card % and rephrase your sql query.
like %'.$head.'%
Are you not useing the . operator to create a dynamic query?
You can learn more about how to create... |
Forum: Legacy and Other Languages Jul 15th, 2008 |
| Replies: 5 Views: 4,103 Hi,
You can find a good tutorial on RPG IV at http://www.tutorialindia.com/ile_rpg_iv/index.php.
Bye! |