Forum: PHP Mar 2nd, 2009 |
| Replies: 7 Views: 1,111 |
Forum: PHP Nov 8th, 2008 |
| Replies: 3 Views: 1,214 in my view,
create a table called firends,when ever one member send a request to the another member,the insert all the records in friends table like,memberid,accept,friendid...at first make the... |
Forum: PHP Nov 4th, 2008 |
| Replies: 10 Views: 1,480 i generally used img tag to send images through my mail function...it gives me no error at all....if you know any other fancy ideas,post here for all daniweb members..
thanks omnix |
Forum: PHP Oct 18th, 2008 |
| Replies: 4 Views: 1,003 yes, in POST variable are stored in a array called $_POST...so we can retrieve them with key like $_POST['lang']; or $_POST['name']; or some thing...No matter of order...
or As adilkhan said,try to... |
Forum: PHP Oct 17th, 2008 |
| Replies: 10 Views: 1,480 means , you want to write some thing in that mail...Right????
if so,
see this..
$mail_body='<style type=text/css><!--td {font-family: Verdana, Arial, Helvetica, sans-serif; font-size:... |
Forum: PHP Oct 15th, 2008 |
| Replies: 1 Views: 283 A programmer , who is coding the particular job ,which already designed. A developer developes the whole thing from analysing, then designing,code it and then test the same. |
Forum: PHP Oct 13th, 2008 |
| Replies: 5 Views: 761 see this code...it will print only clicked checkboxes..
foreach($_POST['checkbox'] as $key=>$val){
echo "key: ". $key. " value: ". $val ."<br />\n";
echo $_POST['checkbox'][0];
and this... |
Forum: PHP Oct 8th, 2008 |
| Replies: 6 Views: 604 hello..
that is CAPTCHA ..means creating dynamic number on an image...
It is used to prevent spam abuse on the websites
For more information:... |
Forum: PHP Sep 18th, 2008 |
| Replies: 18 Views: 1,299 hello nikesh...
that image having a back ground image is same for all...
and the text (name,posts,solved threads) will coming from database and also an image of ours(avatar)...
i think nothing... |
Forum: PHP Aug 18th, 2008 |
| Replies: 19 Views: 1,922 yes,... scru is damn right...
kavitha,keep that point in your mind... |
Forum: PHP Aug 13th, 2008 |
| Replies: 4 Views: 2,147 first you have to gather all checked check boxes...
see this will help you..
http://www.tizag.com/mysqlTutorial/mysqltables.php
ask me any doubt... |
Forum: PHP Aug 11th, 2008 |
| Replies: 11 Views: 1,418 The require() function is identical to include(), except that it handles errors differently.
The include() function generates a warning (but the script will continue execution) while the require()... |
Forum: PHP Aug 11th, 2008 |
| Replies: 19 Views: 1,922 hello see this article is really nice:
http://info.ssl.com/article.aspx?id=10068
http://webdesign.about.com/od/ecommerce/a/aa070407.htm
And keep in mind:
->encode and decode your passwords... |
Forum: PHP Aug 6th, 2008 |
| Replies: 4 Views: 350 i think this is the error in your code and i have changed it to:
mysql_query("UPDATE members2 SET exp_points=exp_points+ $points WHERE username = '$username' AND game = '$game'");
i dont know... |
Forum: PHP Aug 6th, 2008 |
| Replies: 5 Views: 2,649 you have to write insert query after submit your form:
see below:
if($_SERVER['REQUEST_METHOD']=='POST') {
$qur="insert into... |
Forum: PHP Aug 2nd, 2008 |
| Replies: 2 Views: 3,182 hi praveen check this once:
<?php
// Initialize the session.
// If you are using session_name("something"), don't forget it now!
session_start();
// Unset all of the session variables.... |
Forum: PHP Jul 31st, 2008 |
| Replies: 6 Views: 468 see this reference will teach you clearly..
http://www.indiana.edu/~istdept/R547/PHPbasics/template/template.phtml?pager=43
or follow this code and try to implement your self:
<?
function... |
Forum: PHP Jul 10th, 2008 |
| Replies: 1 Views: 311 you have to post this thread in viruses forum... |
Forum: PHP Jul 8th, 2008 |
| Replies: 10 Views: 2,281 Hello kavitha try this...
<?
/...database connections...
if(!empty($_GET['delid'])){
mysql_query("delete from category WHERE id='".$_GET['delid']."'");
... |
Forum: PHP Jul 3rd, 2008 |
| Replies: 8 Views: 803 Try this code, it will work better...
But we can insert image into a folder and That path will be saved into database table..
check it once..
<?
include('connection.php');
... |