841 Posted Topics
Re: 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> … | |
Re: use this code in your welcome page: [code=php] <? session_start(); if(!isset($_SESSION['your_user_session'])) { header("location:login.php"); } ?> [/code] | |
Re: this is one of the best titorial: [url]http://www.tizag.com/mysqlTutorial/[/url] | |
Re: what do you expect from good forum creators??? | |
Re: this line should be like this: [code=php] $query=("select * from course where course='".$course."'") or die(mysql_error()); [/code] | |
Re: set the below options according to you: [url]http://in2.php.net/manual/en/errorfunc.configuration.php[/url] | |
Re: see this link and try your self: [url]http://www.digitalpropulsion.org/Programming/Triggers_in_MySQL_5_0[/url] | |
Re: see this link is very useful to you: [url]http://www.daniweb.com/forums/thread132703.html[/url] | |
Re: 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, … | |
Re: [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... | |
Re: you can get good solutions here: [url]http://www.daniweb.com/forums/thread132703.html[/url] ![]() | |
Re: 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 … | |
Re: 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... | |
Re: 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. | |
Re: try this: [code=php] $query2 = "SELECT * FROM students WHERE highschool ='".$row['highschool']."' ORDER BY lastname"; [/code] | |
Re: yes... do more on css.you will get pretty website .. reach google... | |
Re: 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... | |
Re: hello... refer this url: [url]http://www.phpbuilder.com/manual/en/function.array-multisort.php[/url] | |
Re: yes!!! google does not put more load on meta tags...... | |
Re: 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] | |
Re: check this link very usefull for you... [url]http://www.daniweb.com/forums/thread142757.html[/url] | |
Re: 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] | |
Re: [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] | |
Re: 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.. | |
Re: Check this material is the best: | |
Re: you mean...how to make a flash player... make your thread more understandable... | |
Re: 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 … | |
Re: i think,its not possible because of auto incremented one.... | |
Re: try this code: [code=php] session_start(); session_unregister('uname'); session_destroy(); header ("Location: login.php"); [/code] | |
Re: 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... | |
Re: 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] | |
| |
Re: 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... | |
| |
Re: you can retrieve database information like this: [code=php] while($r=mysql_fetch_assoc(mysql_query("select * from your table"))) { echo $r['yourfield']; } [/code] | |
Re: hello try this: [code=php] # while(mysql_fetch_assoc(mysql_query($sql)) )) { echo '<option value="'.$row['id'].'">'.$row['category_name'].'</option>'; } [/code] | |
Re: 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] | |
Re: yes... remove the line: $truedata = mysql_fetch_array() ![]() | |
Re: 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. | |
Re: 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] | |
Re: html array!!!!!!!!! post your code of html array... | |
Re: yes,put the above code after your insert query.... | |
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 … | |
Re: you can give brief information about all your content seperatly on your home page like HOME SERVICES TUTORIAL CONTACT... | |
tel me what it mean by reputation exactly.. and what about green,black reputations.... | |
The End.