841 Posted Topics

Member Avatar for s080072

No Frames: The<NOFRAMES> tag identifies a section of the HTML file that contains code to be read by frame-blind browsers. The <BODY> tags must be placed with a pair of <NOFRAMES> tags. Syntax: [code=html] <HTML> <HEAD> <TITLE>(Page Title)</TITLE> </HEAD> <FRAMESET> (Frame Definitions) </FRAMESET> <NOFRAMES> <BODY> (Page Layout) </BODY> </NOFRAMES> </HTML> …

Member Avatar for Shanti C
0
114
Member Avatar for veledrom
Member Avatar for punithapary

use this code in your welcome page: [code=php] <? session_start(); if(!isset($_SESSION['your_user_session'])) { header("location:login.php"); } ?> [/code]

Member Avatar for Shanti C
0
123
Member Avatar for Stefano Mtangoo

this is one of the best titorial: [url]http://www.tizag.com/mysqlTutorial/[/url]

Member Avatar for Shanti C
0
79
Member Avatar for mark1993
Member Avatar for prashanth18

this line should be like this: [code=php] $query=("select * from course where course='".$course."'") or die(mysql_error()); [/code]

Member Avatar for saikishore
0
167
Member Avatar for ruby123

set the below options according to you: [url]http://in2.php.net/manual/en/errorfunc.configuration.php[/url]

Member Avatar for Shanti C
0
141
Member Avatar for AvayaMAN

see this link and try your self: [url]http://www.digitalpropulsion.org/Programming/Triggers_in_MySQL_5_0[/url]

Member Avatar for Shanti C
0
43
Member Avatar for php2sheik

see this link is very useful to you: [url]http://www.daniweb.com/forums/thread132703.html[/url]

Member Avatar for Shanti C
0
80
Member Avatar for anuj_sharma

There are really no disadvantages to using a database. I use a MySQL database and PHP to interpret the information. The advantages of a database are numerous. 1. You can keep a LOT of information strored for your website in a database and have it accessed as needed. For instance, …

Member Avatar for Shanti C
0
118
Member Avatar for sam bland

[code=php] echo $s="SELECT * FROM test_table"; $sql = mysql_query($s);exit; [/code] then see what echoed in your page...and execute that query in your database...then we will get what the error.. other wise go for another option... reply with what happened...

Member Avatar for sam bland
0
78
Member Avatar for mangel.murti

you can get good solutions here: [url]http://www.daniweb.com/forums/thread132703.html[/url]

Member Avatar for langsor
0
158
Member Avatar for praveen_dusari

i think it is difficult to remeber ordered details for somany days using sessions... i mean: we can use sessions to store our order details temporarily ..means we can use sessions instead of inserting them into temporders table... i think it is difficult to use sessions to store whole ordered …

Member Avatar for praveen_dusari
0
301
Member Avatar for nrvuppula

i think the last line is not correct... try instead: [code=php] echo "<textarea name='txtComments' rows='2' cols='20' id='txtComments'><?php echo $comments ?></textarea>"; [/code] textarea doesn't have value attribute...

Member Avatar for nrvuppula
0
64
Member Avatar for magikman

On the same server just do this: [code=mysql]SELECT dbname.tablename.columnname,db2name.table2name.column2name FROM dbname.tablename, db2name.table2name; [/code](I think you get the idea) As far as I know you can't select data across multiple servers.

Member Avatar for Shanti C
0
106
Member Avatar for marvinkamote14

try this: [code=php] $query2 = "SELECT * FROM students WHERE highschool ='".$row['highschool']."' ORDER BY lastname"; [/code]

Member Avatar for Shanti C
0
305
Member Avatar for mangel.murti
Member Avatar for MelechM
0
111
Member Avatar for cpeeyush1
Member Avatar for Shanti C
0
75
Member Avatar for hno

Refer this url: [url]http://www.white-hat-web-design.co.uk/articles/php-captcha.php[/url] And for more, as someone said goooogle is your friend...

Member Avatar for PoA
0
82
Member Avatar for rejisha

hello... refer this url: [url]http://www.phpbuilder.com/manual/en/function.array-multisort.php[/url]

Member Avatar for Shanti C
0
144
Member Avatar for linkpartners
Member Avatar for johnxflynn
0
150
Member Avatar for ditty

You could use DATE_ADD/DATE_SUB such as ADDDATE/SUBDATE and SUBTIME, but that's only available since MySQL 4.1.1. check this: [url]http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html[/url]

Member Avatar for Shanti C
0
118
Member Avatar for wertz33

check this link very usefull for you... [url]http://www.daniweb.com/forums/thread142757.html[/url]

Member Avatar for Shanti C
0
70
Member Avatar for moffatt

check this will help you... [url]http://209.85.175.104/search?q=cache:TcbCTxPX41kJ:www.hooverwebdesign.com/how_to_create_ecommerce_website.pdf+how+to+make+ecommerce+site&hl=en&ct=clnk&cd=9&gl=in[/url]

Member Avatar for nimitz1061
0
173
Member Avatar for Scottmandoo

[code=javascript] 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++) { if(m.charAt(i)=="@") cnt++; if(m.charAt(i)==" ") spc++; if(m.charAt(i)==".") dot++; } lnm=m.length if(cnt==0||cnt>1||spc!=0||dot==0 ||lnm<=2 ) {alert("Please Enter Valid E-mail Id ");document.form1.emailid.focus();return false; } [/code]

Member Avatar for essential
0
128
Member Avatar for Kavitha Butchi

hello see this article is really nice: [url]http://info.ssl.com/article.aspx?id=10068[/url] [url]http://webdesign.about.com/od/ecommerce/a/aa070407.htm[/url] And keep in mind: ->encode and decode your passwords perfectly.. ->be careful about using trusted payment gateways... ->be away of sql injections..

Member Avatar for Kavitha Butchi
0
382
Member Avatar for sujith.it
Member Avatar for ishlux

you mean...how to make a flash player... make your thread more understandable...

Member Avatar for ishlux
0
87
Member Avatar for mmmsabeel

see an example: [code=mysql] DELETE tablename FROM tablename, (SELECT MAX(uid) AS dupid,COUNT(uid) AS dupcnt FROM tablename GROUP BY id,url HAVING dupcnt>1) AS dups WHERE tablename.uid=dups.dupid; Here is an example: uid id url 1 20 google.com 2 25 yahoo.com 3 20 google.com 4 25 yahoo.com 5 20 google.com The above query …

Member Avatar for Shanti C
0
101
Member Avatar for gowri_m
Member Avatar for OmniX
Member Avatar for prashanth18

try this code: [code=php] session_start(); session_unregister('uname'); session_destroy(); header ("Location: login.php"); [/code]

Member Avatar for R0bb0b
0
99
Member Avatar for zahra1364
Member Avatar for atplerry

yes,you should create separate folder like "myproject" to your project...and put all the content of your project in that...and make subfolder in your "myproject",if you have administating area...if you use database,then check it in different systems...

Member Avatar for hakimkal
0
116
Member Avatar for mavelgm

hey you have to make some design with text boxes for entering user data..and insert them in a data base table...and then provide login to them by checking database values...using mysql queries... or see here for free scripts online: [url]http://php.about.com/od/finishedphp1/ss/php_login_code_2.htm[/url] [url]http://www.phpjunkyard.com/[/url]

Member Avatar for Shanti C
0
160
Member Avatar for hno
Member Avatar for Shanti C
0
62
Member Avatar for Shreyasi

see this for reference: [url]http://wasp.sourceforge.net/API/wasp.gui/Chunk.html#class_details[/url] what kind of state in php,you said...

Member Avatar for Shreyasi
0
69
Member Avatar for knrakesh
Member Avatar for tru's

you can retrieve database information like this: [code=php] while($r=mysql_fetch_assoc(mysql_query("select * from your table"))) { echo $r['yourfield']; } [/code]

Member Avatar for Shanti C
0
122
Member Avatar for AON07

hello try this: [code=php] # while(mysql_fetch_assoc(mysql_query($sql)) )) { echo '<option value="'.$row['id'].'">'.$row['category_name'].'</option>'; } [/code]

Member Avatar for AON07
0
133
Member Avatar for just asif
Re: asif

hello check these also : [url]http://blogs.iis.net/bills/archive/2006/09/19/How-to-install-PHP-on-IIS7-_2800_RC1_2900_.aspx[/url] [url]http://www.php-mysql-tutorial.com/install-apache-php-mysql.php[/url] [url]http://in2.php.net/install.windows[/url]

Member Avatar for Shanti C
0
87
Member Avatar for andrew13d
Member Avatar for MDGM

php is a server-side scripting environment. The browser, the user (and that includes search engines) will never see one line of your php code. Whatever your php code outputs to the browser will be seen though.

Member Avatar for MDGM
0
104
Member Avatar for rezvi

after your insert query...put this line: header(welcome.php); then after data insertion to your table,than page will redirect to welcome.php your form can be like this: <form action="" NAME="abc" method="post"> but put your insert query and header in this condition: [code=php] if($_SERVER['REQUEST_METHOD']=='POST') { //insert queries... header(welcome.php); } [/code]

Member Avatar for Shanti C
0
82
Member Avatar for knarffrank
Member Avatar for Tom Tolleson
Member Avatar for Shanti C

hello friends.... I am PHP programmer using mysql as my database... Now it is the time to make fast all my queries ,which im using in my programming... I heard about indexing... Tel me what is indexing,how to put indexing to my table... mainly what are the advantages and disadvantages...or …

Member Avatar for pritaeas
0
109
Member Avatar for jynx_o7

you can give brief information about all your content seperatly on your home page like HOME SERVICES TUTORIAL CONTACT...

Member Avatar for jynx_o7
0
83
Member Avatar for Shanti C

tel me what it mean by reputation exactly.. and what about green,black reputations....

Member Avatar for William Hemsworth
0
86
Member Avatar for cosby

The End.