1,741 Posted Topics
Re: umm..I didn't get what you really want..But as per my understanding, it can be done using sql. Say a user adds a level module. Have a column in the table with name level_module. If the user has installed a level module, set it to 1. You can then check if … | |
Re: You can do that using css. [code] <html> <body> <a href="http://www.example.com" style="text-decoration: none;">click here</a> </body> </html> [/code] To apply the same style to all hyperlinks, use this. [code] <html> <head> <style type="text/css"> a { text-decoration: none; } </style> </head> <body> <a href="http://www.example.com">Click here</a> </body> </html> [/code] This will take off … | |
Re: Thats because, reg_num variable is null. Where is reg_num coming from ? From a previous page ? You can use print_r($_POST) for debugging purpose. This will print all the variables that are posted from page1 to page2.(PS. You should write print_r($_POST); in page 2.) Try that and tell me if … | |
Re: paypal or credit card ? | |
Re: You need to write style for that (using css ie.,) Check [url=http://www.w3schools.com/css/css_examples.asp]this [/url] out. | |
Re: [QUOTE=hooray;513673]I dont know if it is as simple as this, but you have left out a " at the end of your $sql = part before the ;[/QUOTE] :) Absolutely right. | |
Re: [url=http://autoindex.sourceforge.net/forum/apache.php]This [/url] might help. My suggestion is to use [url=http://www.wampserver.com/en/download.php]WAMP[/url] or [url=http://www.apachefriends.org/en/xampp-windows.html] XAMPP [/url]. It configures everything for you! | |
Re: Welcome to Daniweb Ken.. Please post your question in hardware forum! :) | |
Re: I don't think that is possible. If you have the access to the 'users' table, why don't you update the table setting an empty password ? Then send a mail to all the people in the users table(I am sure you will have a field 'email' in the table) asking … | |
Re: [url=http://in2.php.net/nl2br] nl2br[/url] function! | |
Re: [QUOTE=Abhishek Anand;516206]never print or echo anything after using header. [/QUOTE] After using header ? Are you sure ? You can print anything you want after calling header function. You shouldn't print anything before header. :) | |
Re: You can do that by using group by clause. [inlinecode]select * from product_listing group by product_category; [/inlinecode] I dont know what you mean by >>still be able to see the table layout in dreamweaver << :S | |
Re: My suggestion is, always use integer values if you are are updating a table based on the choice made. Because, it ll be easy for you to update. But I guess your table structure is not that good.. Do you have an autoincrement field(id or counter or anything like that … | |
Re: You haven't shown us where you want to include a where clause. You should mention your problem in detail. :) | |
Re: If your computer beeps more than what it used to, then I think its your RAM which has the fault. | |
| |
Re: when the user logs in, put his username to the session. Eg. //After logging in, add his name to the session. [inlinecode]$_SESSION['user']=$username; [/inlinecode] Then in each page, check if $_SESSION['user'] is not null. If its null, then use header function to redirect the user back to the first page. If … | |
Re: Welcome to Daniweb. Post your questions in related forum and you will surely get some help! | |
![]() | Re: [QUOTE=technogeek_42;515133]can i get ur e-add and ur cp #[/QUOTE] The OP started this thread almost 2 yrs ago. |
Re: [QUOTE=bwinkle;515805]Please send additional information to: Billy Winkle IS Manager Postal Presort, Inc. Wichita, Kansas 67203 [email]bwinkle@postalpresort.com[/email][/QUOTE] What information ? :S | |
Re: :) Welcome! Keep reading and you will learn a lot ! | |
Re: [QUOTE=GCameron;514249]It's my understanding that if the file type is not .php (or one of it's variations) the php parser doesn't get invoked on the web server so the code gets treated like any other content and is displayed.[/QUOTE] Right. You can edit your .htaccess file to parse html file as … ![]() | |
Re: Explain your problem in detail. What do you mean by filename and foldername it doesnt array A-Z,0-9 ? Also, when posting your code, put it in [code =php][/code ] tags. ![]() | |
Re: :) He means configuring apache to add mysql module. ![]() | |
Re: It's okay. He's just admiring the shape of your skull. - Fear and loathing in Las vegas. | |
Re: Welcome to Daniweb! Well, since this is an 'introduce yourself' forum, theres no problem if you say about your background. :) | |
Re: Welcome to Daniweb! lol.. We aren't geeks(well, not me atleast! :P ) | |
Re: You should post this question in [url=http://www.daniweb.com/forums/forum143.html] html and css[/url] forum. |
The End.