Search found 6 matches
- Wed Sep 19, 2007 10:04 am
- Forum: PHP - Code
- Topic: Suggest me a secure way of coding to take a value...
- Replies: 3
- Views: 234
Suggest me a secure way of coding to take a value...
Hi, I am getting signUp details in a page (Firstname, Lastname, Username, Password, etc..,) and I am storing it in a database table, username as a primary key. After that, I am getting social profile details, work profile details and storing it in a tables, username as a primary key in each tables. ...
- Mon Sep 17, 2007 7:11 am
- Forum: PHP - Code
- Topic: How to bring mailing concept using PHP?
- Replies: 4
- Views: 778
Hi...
Are you talking about mail like the private messages on these forums? Or gathering/showing real email messages via a web interface? Or, are you talking about sending email through php? I want to bring mail inbox, sent items, composing like real email messages via a web interface. Do you have any id...
- Sat Sep 15, 2007 11:16 pm
- Forum: PHP - Code
- Topic: How to bring mailing concept using PHP?
- Replies: 4
- Views: 778
How to bring mailing concept using PHP?
Hi ,
I need to bring mailing concept into my PHP project. Mail composing, I
already did it in my previous project using MIME mail concept.
I am not having any idea about how to bring inbox and sent mail items.
Help me out. Thanks in advance.
I need to bring mailing concept into my PHP project. Mail composing, I
already did it in my previous project using MIME mail concept.
I am not having any idea about how to bring inbox and sent mail items.
Help me out. Thanks in advance.
- Sat Sep 15, 2007 12:08 am
- Forum: PHP - Code
- Topic: How to paginate like "Page: 1,2,3,4,5,6,..."
- Replies: 4
- Views: 331
check out this one...
***** PLEASE USE [PHP ] AND OTHER TAGS WHEN POSTING CODE ***** <? /* Set current, prev and next page */ $page = (!isset($_GET['page'])? 1 : 0; $prev = ($page - 1); $next = ($page + 1); /* Max results per page */ $max_results = 5; /* Calculate the offset */ $from = (($page * $max_results) - $max_res...
- Sat Sep 15, 2007 12:05 am
- Forum: PHP - Code
- Topic: Php headers already sent problem
- Replies: 4
- Views: 307
Use header("Location://path")....
I have already encountered this kind of problem. Try to find out any "echo" has been given by you in your code. If so, try to remove that one because you are redirecting the page, same time you are echoing something in the current page. It will generate the error. Try to use - header("...
- Fri Sep 14, 2007 11:53 pm
- Forum: PHP - Code
- Topic: form in my script does not send hidden input value [SOLVED]
- Replies: 4
- Views: 708
you have to...
you have to mention 'id' or 'name' for your hidden field.