841 Posted Topics

Member Avatar for architact
Member Avatar for Cultred
Member Avatar for TheBeast32

Use color formats are decent. Make correct alignments. Use your english professionally.. Make decent font in your css file. I think this color is nice and professional:#6F6754. Make your hyperlinks without line by using css. Sure every page in your site is with same alignment. Use good buttons with decent …

Member Avatar for ccube921
0
122
Member Avatar for syazuchan
Member Avatar for The Dude
Member Avatar for Shanti C

Sorry for the simple question... But please i need help from you guys... How to import and export the database in oracle..iam have been using oracle 8i in my computer... im completely new to this environment... please help on this.. Thanks in advance... Shanti.

Member Avatar for alit2002
0
156
Member Avatar for knrakesh

hello this is same as add/edit category.. the only difference is we are showing categories and sub categories..thats all..remaining is same... k try again, you will get...

Member Avatar for knrakesh
0
139
Member Avatar for knrakesh

[QUOTE=mr.khurrams;762368]You most welcome[/QUOTE] Nice Answer......

Member Avatar for Shanti C
0
114
Member Avatar for knrakesh

you can't add category and subcategory at one page, because while adding the subcategory , we have to insert category id as its parent_id, so we don't insert category, we don't know under which category ,we are going to insert sub category But we can use only on table to …

Member Avatar for Shanti C
0
93
Member Avatar for praveen_dusari

My passion. My dream , my aim is to become a good classical singer...though i sings well..

Member Avatar for techbound
0
169
Member Avatar for rakeshkn123

could you clearly explain your thread more... if you want save one check box value,normally you can use $_POST['checkboxname']..it will return the check box value... or you want check box array[] or something else.. then post here clearly....

Member Avatar for rakeshkn123
0
72
Member Avatar for samtwilliams

[QUOTE=PomonaGrange;753057]Maybe try this... Its What I've used. [icode]$num = mysql_num_rows($result);[/icode] it might help.[/QUOTE] i think the above is the solution....

Member Avatar for sikka_varun
0
186
Member Avatar for virspy

i don't know how to create telugu site in php,,, but with zoomla it can be possible easily.. try it once..

Member Avatar for virspy
0
88
Member Avatar for JG42122

hello check for these to know about SEO: [url]http://www.fendigital.com/html/how_is_seo_done_.html[/url] [url]http://lifehacker.com/software/seo/getting-to-done-seo-made-easy-138429.php[/url]

Member Avatar for mackone
0
140
Member Avatar for Shanti C

Is there any possibility to do online chatting with php. In clear, if we post our message ,the other person for whom we post will get that message with out inserting that message into the database... Can any one please help me out... Thanks...

Member Avatar for shivjamesh
0
519
Member Avatar for OmniX

means , you want to write some thing in that mail...Right???? if so, see this.. [code=php] $mail_body='<style type=text/css><!--td {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;}--></style> <table width="50%" border="0" align="center" cellpadding="1" cellspacing="0" bgcolor="#E7E7E7"> <tr><td>[B]Do your design here...[/B]</td></tr> </table>'; mailto = 'some@some.com' ; $mailheader = 'MIME-Version: 1.0' . "\r\n"; $mailheader .= 'Content-type: …

Member Avatar for OmniX
0
159
Member Avatar for hbmarar

try this code: [code=php] $qry=mysql_query("SELECT * FROM yourtablename "); $num=mysql_num_rows($qry); $start=0; $len=1000; $value=$_POST['field'] while($start<$num) { $f="update tablename set field='".$value."' LIMIT $start,$len"; $start=$start+1000; $len=$len+1000; } [/code]

Member Avatar for hbmarar
0
131
Member Avatar for dottomm

[code=mysql] $r=mysql_query("select count(*) as cnt form stories inner join teams ON stories.user_id = teams.team_id"); $t=mysql_fetch_array($r); echo $t['cnt'];//prints count of stories.. [/code]

Member Avatar for dottomm
0
149
Member Avatar for Neitz
Member Avatar for punithapary

yes this is captcha.. check [URL="http://www.codewalkers.com/c/a/Miscellaneous/Creating-a-CAPTCHA-with-PHP/"]this[/URL]

Member Avatar for darren2005
0
105
Member Avatar for themoose111

you have to buy the space in internet and then copy your website files into your space...for this you have to contact hosting company....

Member Avatar for wickedsunny
1
112
Member Avatar for haii

yes.. and also look at query optimization and indexing,if you are using joins and complex query in your page... Minimize your loop as make as possible..this is better on rather to set a time for infinite...

Member Avatar for Shanti C
0
110
Member Avatar for Shanti C

is there any possibility to access server php ini file ??? if i enable to get work asp tags in php ,but it is not working in server... how do this possible??? thanks shanti

Member Avatar for Shanti C
0
96
Member Avatar for radhigoud

you can restrict size of window behind the minimize or maximize button using javascript.. my answer is not related to your thread,please ignore it and be more specific about your thread....

Member Avatar for Shanti C
0
61
Member Avatar for katchatore

yes... Before you start the e-learning,keep in mine some important points... First show all of your courses with price and brief details...and there provide questions link to ask their doubts about that course(do it by mail function...). Provide membership means registration form and login form with session or cookies to …

Member Avatar for Evancool
0
112
Member Avatar for bimlaburlakoti

[QUOTE=bimlaburlakoti;733074]hello friends how to make subscribe newsletter automated[/QUOTE] make it more clear.... you want know the code behind that or something else?????

Member Avatar for Shanti C
0
69
Member Avatar for punithapary

yes... and also use while loop like: [code] while($sql2=mysql_fetch_array($sql1)) { // display all students details } [/code]

Member Avatar for Shanti C
0
185
Member Avatar for castlelaker

hello..see this: [code] $query="SELECT count(*) as c FROM stats WHERE BirthCountry = country"; //Perform the SQL query against the database $result=mysql_query($query); $row=mysql_fetch_array($result); echo $row['c']; [/code] i don't know the query for counting no.of clients...but the above is the correct syntax...if this is not correct,post your table structure.. thank you.

Member Avatar for jyothi chundi
0
126
Member Avatar for moerpheus

you need decide the navigation of your forum site, then the code need to develop that forum will available on the internet individually...you just start it,if any codes requires ,post here,many daniweb code gurus will help you...And mind one thing , develop it by SEO friendly..And follow some security instuctions... …

Member Avatar for martin5211
0
214
Member Avatar for kahaj

this is for checking only numbers: [code=php] function Only_Num(id) { if(isNaN(document.getElementById(id).value)) { alert("Please Enter Only Numbers (0-9).."); document.getElementById(id).value=""; document.getElementById(id).focus(); } return; } [/code] this for only letters: [code=php] function isAlphabet(elem, helperMsg){ var alphaExp = /^[a-zA-Z]+$/; if(elem.value.match(alphaExp)){ return true; }else{ alert(helperMsg); elem.focus(); return false; } } [/code]

Member Avatar for TnWbDzgnr1996
0
159
Member Avatar for mrcniceguy

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 accept is 0..that means,the member is sent a request to his friend,but his friend doesn't accept the request...if his friend accept …

Member Avatar for digital-ether
0
1K
Member Avatar for mikkey

you can use this type of connectivity.. [code] mysql_connect('localhost','root','1234'); mysql_select_db('dbname'); [/code] or refer [URL="http://www.modwest.com/help/kb6-60.html"]this[/URL]... or spend some time to goooogle....

Member Avatar for Shanti C
0
81
Member Avatar for mzd12111
Member Avatar for k2k

check this: [code] echo $qur="INSERT INTO person(pID, firstName, middleName, lastName) VALUES('$pid', '$firstName', '$middleName', '$lastName')" mysql_query($qur); [/code] copy and paste what it gives out into your database... or you didn't give password at line 1...

Member Avatar for Shanti C
0
81
Member Avatar for rutaba
Member Avatar for Manuz

try this or post your code... [code] window.open("","newWin","toolbar=no,location=no,resizable=no, width=200,height=200,left=100,top=100") [/code]

Member Avatar for Manuz
0
518
Member Avatar for udaydesai

try[URL="http://openwebware.com/"] this[/URL] editor is also simple and good....

Member Avatar for Shanti C
0
146
Member Avatar for r_sathya

your post is not clear for me... but from what i understood is, if you use editor in your form, then we can copy and paste our resume in that , and it will be stored in our database, then we can retrieve it...editor are available on the internet..go for …

Member Avatar for Shanti C
0
115
Member Avatar for jackakos

hello jackakos, in this line[code] $get_event = "select * from event where event_time like $_SESSION['event_time'] and emp_no like $_SESSION['check_array']"; [/code] it is better to use = while getting data eith emp_no. and you can use $check_array in your query like: [code] $get_event = "select * from event where event_time like …

Member Avatar for jackakos
0
142
Member Avatar for djnzak

provide an url of registration form in your invitation..so they can register there..simply disable register page on your site... or in that invitation send them with some code of random number which is stored in your data base table...check with it,while user try to register in your website... If your …

Member Avatar for Kamran Saleem
0
88
Member Avatar for Devro23

hello... i just tried your code in another way... it doesn't give any spaces... have a look at it.. [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> </head> <body bgcolor="#737373" > <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td align="center" …

Member Avatar for infotechland
0
114
Member Avatar for danielpataki

try this: [code] var url="check.php" url=url+"?password="+password url=url+"?password_check="+password_check [/code]

Member Avatar for danielpataki
0
167
Member Avatar for ashercharles

sorry company_name is already inserted in person table, thats why use update or else...

Member Avatar for Shanti C
0
69
Member Avatar for suredurga
Member Avatar for rogenie

use explode function to separate them... see[URL="http://www.tizag.com/phpT/php-string-explode.php"] this[/URL]... if my post is not reach your requirement...please ignore this...

Member Avatar for rogenie
0
180
Member Avatar for jackakos

[QUOTE]A. I have to validate the selection made[/QUOTE] this is the code: [code=javascript] <script type="text/javascript"> function chkChecks(){ isChecked=false for(var i=0;i<document.forms["new_page"]["allowed[]"].length;i++){ if(document.forms["new_page"]["allowed[]"][i].checked){ isChecked=true } } if(isChecked){ document.forms["new_page"].submit() } else{ alert('Please select a checkbox') } } </script> [/code] And [QUOTE]B. I have to store the value of the selected checkboxes into an …

Member Avatar for jackakos
0
171
Member Avatar for emhmk1

your post is not clear for me... please post again with clear...i am not telling totally wrong..

Member Avatar for emhmk1
0
84
Member Avatar for yasmena

I think we don't need to pass a variable to an included file, it already has access to all variables in the including script. It becomes part of the script that is including it. $page = 'partner'; include '../admin/addcustomer.php'; Now addcustomer.php will see that $page contains 'partner'.

Member Avatar for yasmena
0
191
Member Avatar for balaji153

Participating in related forums is gudd.. And also mind your forum made with attractive,user friendly,easy download,good to see,provide them with attractive features... And main thing is:::Put off your registered member with continue posting is better than the getting new member.Because he may cause to provide yuor forum with new member …

Member Avatar for flynismo
0
148
Member Avatar for PanGraphX

check : [url]http://www.planetsourcecode.com/vb/default.asp?lngWId=8#categories[/url] and [URL="http://www.google.com"]this[/URL] is your best mentor.....

Member Avatar for PanGraphX
0
62

The End.