Forum: PHP Apr 16th, 2009 |
| Replies: 16 Views: 1,433 Hi,
Why don't you concatenate values in a string like
apple,orange,mango
and then store it in cookie. |
Forum: PHP Jul 30th, 2008 |
| Replies: 2 Views: 398 Ohh sorry, use this.
<a href="contractor_inbox.php?start=<?=$start?>&limit=<?=$limit?>&mail_id=<?=$row['mail_id'];?>"> |
Forum: PHP Jul 30th, 2008 |
| Replies: 2 Views: 398 Hi,
Modify the following line.
<a href="contractor_inbox.php?mail_id=<? echo $row['mail_id'];//session_register("mail_id");//session_register("mail_id");?>">
with |
Forum: PHP Jul 24th, 2008 |
| Replies: 11 Views: 941 Hi Use this code, its not giving any error, also change
$page_name="test.php";
with
the name of your page
<?
session_start();
include('database.php');
$page_name="test.php"; |
Forum: PHP Jul 24th, 2008 |
| Replies: 11 Views: 941 Hi,
Post the code for page_new_navigation.php page.
becausethe code that I send you should not give problem |
Forum: PHP Jul 24th, 2008 |
| Replies: 11 Views: 941 Sorry, That is one function that I had used to prevent SQL injection.
Please remove that function from the code.
like
$limit=sql_quote($_GET['limit']);
change it to |
Forum: PHP Jul 24th, 2008 |
| Replies: 7 Views: 568 Hi,
Can you tell, what is wrong with the delete operation, is it giving an error or what.
The syntex is correct.
You can print the sql syntex and then run the query in mysql directly. |
Forum: PHP Jul 24th, 2008 |
| Replies: 11 Views: 941 Hi,
Just forgot to tell you one thing.
Change the following line in code with the page name.
$page_name="yourPage.php"; |
Forum: PHP Jul 24th, 2008 |
| Replies: 11 Views: 941 Hi,
I have done the pagination check it.
<?phpsession_start();
include('database.php');
//Information for paging... |
Forum: PHP Jul 22nd, 2008 |
| Replies: 18 Views: 791 Hi,
I think the problem is in the way you are writing the code.
from the above code, you are passing
href="contractor_mail_action_contents.php?mail_id=<?$a=$row['mail_id']?>">
change your... |
Forum: PHP Jul 22nd, 2008 |
| Replies: 7 Views: 561 Hi Shanti,
Check this site.
http://www.velocityreviews.com/forums/t159596-rotate-an-image-90-degrees-.html |
Forum: PHP Jul 22nd, 2008 |
| Replies: 18 Views: 791 Hi,
I think the problem is in the following statement.
$query1="SELECT * FROM autoalto_mail where mail_id='".$_REQUEST['$mailid1']."'" ;
You are using session to get the value and you are... |
Forum: PHP Jul 9th, 2008 |
| Replies: 7 Views: 678 Hi,
Can you please let us know, what is the value in $POST_number.
as % sign is for getting reminder.
So if $POST_number will have value 0, then it will give divide by 0 error. |
Forum: PHP Jul 8th, 2008 |
| Replies: 41 Views: 13,411 hi,
The problem was not with AJAX or PHP code, but it was with the xml generation. I have included the modified code. I have added a root element for the XML.
<?php
// This is a very... |