Search Results

Showing results 1 to 31 of 31
Search took 0.01 seconds.
Search: Posts Made By: Shanti Chepuru
Forum: PHP Mar 2nd, 2009
Replies: 7
Views: 1,168
Posted By Shanti Chepuru
Ok...Welcome....
Forum: PHP Nov 8th, 2008
Replies: 3
Views: 1,233
Posted By Shanti Chepuru
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,500
Posted By Shanti Chepuru
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: Geeks' Lounge Oct 22nd, 2008
Replies: 1,554
Views: 205,760
Posted By Shanti Chepuru
Champions are made , not born....
Forum: PHP Oct 18th, 2008
Replies: 4
Views: 1,019
Posted By Shanti Chepuru
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: HTML and CSS Oct 17th, 2008
Replies: 4
Views: 767
Posted By Shanti Chepuru
try onKeyup() or onkeyPress()
Forum: PHP Oct 17th, 2008
Replies: 10
Views: 1,500
Posted By Shanti Chepuru
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: 287
Posted By Shanti Chepuru
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
Solved: Checkboxes
Views: 765
Posted By Shanti Chepuru
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: 610
Posted By Shanti Chepuru
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: MySQL Oct 1st, 2008
Replies: 2
Views: 801
Posted By Shanti Chepuru
desc is a keyword,
so change that name to any like desc1...
and try...
Forum: PHP Sep 18th, 2008
Replies: 18
Views: 1,303
Posted By Shanti Chepuru
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: Geeks' Lounge Sep 16th, 2008
Replies: 1,554
Views: 205,760
Posted By Shanti Chepuru
Be intelligent, But Don't try to cheat...
Be innocent, But Don't get cheated..
Forum: MySQL Sep 16th, 2008
Replies: 10
Solved: Query Needed
Views: 1,153
Posted By Shanti Chepuru
Welcome...
Forum: JavaScript / DHTML / AJAX Aug 28th, 2008
Replies: 9
Views: 7,939
Posted By Shanti Chepuru
i think this code will help you...

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>

<script>
function generateRow() {
Forum: PHP Aug 18th, 2008
Replies: 19
Views: 1,939
Posted By Shanti Chepuru
yes,... scru is damn right...
kavitha,keep that point in your mind...
Forum: PHP Aug 13th, 2008
Replies: 4
Views: 2,172
Posted By Shanti Chepuru
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,434
Posted By Shanti Chepuru
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,939
Posted By Shanti Chepuru
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: 353
Posted By Shanti Chepuru
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,721
Posted By Shanti Chepuru
you have to write insert query after submit your form:
see below:

if($_SERVER['REQUEST_METHOD']=='POST') {
$qur="insert into...
Forum: JavaScript / DHTML / AJAX Aug 5th, 2008
Replies: 11
Views: 8,648
Posted By Shanti Chepuru
how to disable ctrl+c:
http://www.faqs.org/faqs/msdos-programmer-faq/part2/section-16.html

And
That shortcut is handled by the operating system. It never reaches the browser and so the browser...
Forum: PHP Aug 2nd, 2008
Replies: 2
Views: 3,264
Posted By Shanti Chepuru
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: 471
Posted By Shanti Chepuru
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: JavaScript / DHTML / AJAX Jul 31st, 2008
Replies: 4
Views: 1,001
Posted By Shanti Chepuru
if(trimstr(d.emailid.value)==""){alert("Enter E-Mail ID");d.emailid.focus();return false;}
var m = document.form1.emailid.value
var cnt=0,spc=0,dot=0;
for(var i=1;i<=m.length;i++)
{...
Forum: JavaScript / DHTML / AJAX Jul 17th, 2008
Replies: 6
Views: 1,152
Posted By Shanti Chepuru
var1=document.getelementbyid('txt1').value
var2=document.getelementbyid('txt2').value
var3=Number(var1)+Number(var2)



or concentrate on eval() function in javascript by googling....
Forum: DaniWeb Community Feedback Jul 17th, 2008
Replies: 1
Views: 596
Posted By Shanti Chepuru
you just put your code in "" code tags....
Forum: JavaScript / DHTML / AJAX Jul 15th, 2008
Replies: 10
Views: 3,935
Posted By Shanti Chepuru
if (Date.parse(fromDate) > Date.parse(toDate)) {
alert("Invalid Date Range!\nStart Date cannot be after End Date!")
return false;

}

or


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
Forum: PHP Jul 10th, 2008
Replies: 1
Views: 315
Posted By Shanti Chepuru
you have to post this thread in viruses forum...
Forum: PHP Jul 8th, 2008
Replies: 10
Views: 2,302
Posted By Shanti Chepuru
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: 813
Posted By Shanti Chepuru
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');
...
Showing results 1 to 31 of 31

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC