Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #1K
~6K People Reached
Favorite Tags

22 Posted Topics

Member Avatar for vinomashwin

@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 …

Member Avatar for diafol
-5
3K
Member Avatar for javanew

Can you please provide the entire code you are using so that it will be helpful to detect where the problem lies... Thanks!

Member Avatar for diafol
0
103
Member Avatar for captain.don

#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 …

Member Avatar for DonaldAlexander
0
128
Member Avatar for niths

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 …

Member Avatar for webexpertzhere
0
90
Member Avatar for JasonAChurchill

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 …

Member Avatar for webexpertzhere
0
161
Member Avatar for prem2

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

Member Avatar for Zagga
0
975
Member Avatar for tchiky

This is what I normally do: $md5 = md5(microtime() * mktime()); $string = substr($md5,0,10);

Member Avatar for tchiky
0
170
Member Avatar for MBD

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...

Member Avatar for webexpertzhere
0
141
Member Avatar for phatgirl21
Member Avatar for webexpertzhere
0
95
Member Avatar for cane23

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

Member Avatar for saiprem
0
100
Member Avatar for codeblock
Member Avatar for codeblock
0
185
Member Avatar for MxDev

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...

Member Avatar for webexpertzhere
0
79
Member Avatar for Usdi

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.

Member Avatar for MidiMagic
0
134
Member Avatar for Woobag

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.

Member Avatar for Woobag
0
87
Member Avatar for ryan12193

You can use the PHP mail function. You can use this link for reference : [url]http://php.net/manual/en/function.mail.php[/url]

Member Avatar for webexpertzhere
0
104
Member Avatar for kira4

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

Member Avatar for SoN9ne
0
156
Member Avatar for dgr231

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: …

Member Avatar for webexpertzhere
0
132
Member Avatar for web3

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] …

Member Avatar for diafol
0
73
Member Avatar for catcoffee

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 :(

Member Avatar for jomanlk
0
216
Member Avatar for Facte

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]

Member Avatar for Facte
0
144
Member Avatar for sumeru

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.

Member Avatar for webexpertzhere
0
141
Member Avatar for serendipity

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 …

Member Avatar for serendipity
0
128

The End.