- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
22 Posted Topics
Re: @sushmanm : If you want a registration and a login following the registration, you need to store all the data you obtain from the registration form and then retrieve it while one of the registered users is logging in. So you need MySQL database to store data and retrieve the … ![]() | |
Re: Can you please provide the entire code you are using so that it will be helpful to detect where the problem lies... Thanks! ![]() | |
Re: #1 - On your form tag, set method="post" and set action="yourphpfilename.php" #2 - Replace yourphpfilename with the name of your php file that is going to collect the data from the form and send it through mail (eg : form.php) #3 - On your html form, set name property for … | |
Re: Check if this answers your query: after you verify the login credentials, connect to the database. Decide if you want to display all the details of each profile or you want to display only few details of every profile. Depending on this change your select query accordingly. If you want … | |
Re: Place your code one in each line, provide spaces wherever necessary. There seem to be other places also where <?php and the next character is not provided a space like <?php} should be <?php } So check your code thoroughly for required spaces, split your code into multiple lines and … | |
Re: There doesnt seem to be any errors in the code you are using. It should definitely be a problem with the version. The goto operator is available only as of PHP 5.3 Please check your PHP version ![]() | |
Re: This is what I normally do: $md5 = md5(microtime() * mktime()); $string = substr($md5,0,10); | |
Re: Please be more specific with your problem... Where is it that you are getting the extra white space? Kindly explain so that we can help... It will be a minor issue for sure... | |
Re: @phatgirl21 , please mention the exact error message you are getting | |
Re: Yes I too spotted the same 2 problems and was about to type it only to realise kokoro90 has already pointed that out. Please check spellings and space issues and get back if you still face problems | |
Re: Please provide the full code for understanding your problem better | |
Re: If you have a Wordpress blog for your site, your news section can also display the recent posts from the blog... Else, the mysql/php option suggested earlier is the best way to go... | |
Re: There is nothing wrong with the piece of code that you have provided. This code does not restrict backspaces. Please provide more insight into the issue. | |
Re: You have provided repeat-x to the bg image and it will repeat horizontally alone. Probably thats the reason you see it at the top of the entire page. Instead of repeat-x, provide [B]repeat[/B] so that it spans horizontally and vertically. Please let me know if this solves your issue. | |
Re: You can use the PHP mail function. You can use this link for reference : [url]http://php.net/manual/en/function.mail.php[/url] | |
Re: If you can throw some light on what is it that you are trying to update we can help you with the correct UPDATE query required | |
Re: Please check if this solves your issue: [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>eBay Test Ad</title> <style type="text/css"> table.toptable { background-color: #000; margin-left: auto; margin-right: auto; border-collapse: collapse; display: block; width: 900px; position: relative; } [B].testtext[/B] { text-align:center; color: #fff; font-family: Arial, sans serif; font-weight: … | |
Re: If I am getting you right, you mean to say that your database is not getting updated with the values provided using the INSERT query. Is that right? Kindly excuse if I got it wrong. If that is the issue, this line of code should solve it for you: [CODE]mysql_query($queryreg,$connect);[/CODE] … ![]() | |
Re: Did you have a look at [url]http://www.w3schools.com/PHP/php_file_upload.asp[/url] in w3schools site? The code clearly explains all steps required to upload a file using HTML and PHP alone. What are your doubts in points 3 and 4? Can you elaborate on it? Unable to understand and so unable to help :( | |
Re: Please check if this works: [code=php] $lang = $_SESSION['lang']; $q6 = sprintf("SELECT * FROM banners WHERE lang='%s' AND section='top' ORDER BY RAND() LIMIT 1",mysql_real_escape_string($lang)); [/code] | |
Re: Is the issue solved? When I tried to have a look at your problem link : [url]http://photoindia.com/test/Untitled-1.html[/url] Im getting a 'Page not found' error. If you can get me the correct details, I can probably help you out. | |
Re: I too think the problem is either with: 1. 2 'action' attribute for the same form 2. Both submit and reset have the same 'name' Do let us know if you could solve the issue; also if you got some other lead to the issue. Might help others who might … |
The End.