1,741 Posted Topics

Member Avatar for isotope
Member Avatar for jino

zend studio is good. But its very expensive! Free editors, umm.. You can use eclipse with php plugins ! And then there is devphp, maguma which are open source IDE's too.

Member Avatar for Dsiembab
0
74
Member Avatar for The Dude

[QUOTE=sneekula;541515]Sorry about my language, but I hope she sues the crap out of that law and order jergg![/QUOTE] echo

Member Avatar for ZZucker
0
129
Member Avatar for vaibhavs

[quote] A.)gets to your site via a link with a target="_blank". D.)Right clicked to open your link in a new tab/window [/quote] I just tested it and it works.

Member Avatar for vaibhavs
1
243
Member Avatar for The Dude
Member Avatar for gopi kannan

The default user for the database is root. Try giving ("localhost","root",""). That should work.

Member Avatar for nav33n
0
75
Member Avatar for nurjb
Member Avatar for kings

instead, initialise $nr0 to 0 outside while loop. initialise $nr0 at the end of while loop.

Member Avatar for nav33n
0
84
Member Avatar for irfani
Member Avatar for scorpionz

when the user logs in, put his username in the session. In all other pages, check if $_SESSION['username'] is set and not equal to null. If its null, then use header function to redirect to the login page. Eg. [code=php] //after user logs in, $_SESSION['username']=$username; // in other pages, if(! …

Member Avatar for nav33n
0
182
Member Avatar for rybo
Member Avatar for dwlamb_001

[quote] echo $a."<br />"; //Note this outputs array(0, 204, 460, 586, 709, 826) in browser as desired and expected[/quote] If $a was an array, It wouldn't print anything if you give echo $a. It will give aray(). So, obviously, [quote] foreach($a as $s) { echo "Value: " . $s . …

Member Avatar for nav33n
0
150
Member Avatar for Oscar G. Gidei
Member Avatar for haiku11000
Member Avatar for forumhound

Welcome to Daniweb forumhound. Please post your question in [url=http://www.daniweb.com/forums/forum143.html] html and css [/url] forum ! :)

Member Avatar for Jx_Man
0
73
Member Avatar for RockyOne
Member Avatar for carobee

Try out a simple example. [code=php] <?php session_start(); $_SESSION['name']="something"; echo $_SESSION['name']; ?> [/code] Tellme if that works.

Member Avatar for Nick Evan
0
138
Member Avatar for carobee

Are you starting the session in page2 ? If your answer is yes, then you need to show us your code. If your answer is no, then start the session ! :)

Member Avatar for carobee
0
145
Member Avatar for Rasjoe

Welcome to Daniweb Mathura! Post your question in java forum to get help!

Member Avatar for nav33n
0
113
Member Avatar for Vai

Can you explain your problem in detail ? Because I have never used reset lost password option of this site. And also, what is redirecting a user based on url in the table ?

Member Avatar for nav33n
0
112
Member Avatar for jinchiruki
Member Avatar for Darrenp

First of all, welcome to Daniweb. Could you please post your code here ?

Member Avatar for nav33n
0
23
Member Avatar for scorpionz

Grant privileges (using root account) to the user pma. I don't think pma have sufficient privileges.

Member Avatar for nav33n
1
503
Member Avatar for dami06

Notices can be ignored. Notices can be turned off by changing the error_reporting setting in your php.ini. Anyway, as ryan_vietnow has already mentioned, there are 2 ?>. And then, the } for the class UI is missing.

Member Avatar for dami06
0
136
Member Avatar for Sahiba
Member Avatar for Mark Hendriksen
Member Avatar for tylerpenney
Member Avatar for jlevesque
Member Avatar for White Eagle
Member Avatar for nirmala_n6
Re: hi

Hi Nirmala. Welcome to Daniweb! Please read the guidelines and post your questions in relative forum! :)

Member Avatar for zandiago
0
24
Member Avatar for ryacine
Member Avatar for shaka2
Re: Hi

:) Welcome to Daniweb Sharada. One suggestion, don't get bored if you dont get the right output! If you get bored, you will lose interest. And if you lose interest, you will never get the right output !

Member Avatar for zandiago
0
34
Member Avatar for lindanit
Member Avatar for shinnxennosagga
Member Avatar for lordx78

When the user logs in, check if he's a valid user. If he's a valid user, add that username to a session variable. Use that session variable in the next page where you want to display his name. A small eg. [code=php] <?php //page1.php session_start(); // check if the user …

Member Avatar for nav33n
0
114
Member Avatar for yasmin1440

Is it a custom message or the one from mysql ? If its a custom message, check all your scripts for this string. Check on what condition does it print this statement.

Member Avatar for yasmin1440
0
128
Member Avatar for willcomp
Member Avatar for gowtham
Member Avatar for ehteshamshah
Member Avatar for practor
Member Avatar for patricia2008
Member Avatar for jray
Member Avatar for kings
Member Avatar for richie513

Check your loops. I guess you have an infinite loop somewhere OR maybe the queries to fetch the data from the table is taking a long time. Umm.. I think the problem is with the loops!

Member Avatar for richie513
1
203
Member Avatar for kittu007
Member Avatar for Bushido Hacks
Member Avatar for okonjiaustin

[quote]So you define the path to your image directory thus: define("MAIN_IMAGE_STORE","../images/");[/quote] The OP is saving the images in a table.

Member Avatar for nav33n
0
179
Member Avatar for Auzzie

1. Line 74. You are ending a comment */. It doesn't have a matching /* . 2. [quote]function WriteOutput() { $output = '<br /><table bgcolor="#CCCCCC"><tr><td>"; [/quote] You are assigning a string to $output. It starts with a ' but ends with a ". 3. I am not sure if your …

Member Avatar for nav33n
0
66
Member Avatar for jino
Member Avatar for lydia21
Member Avatar for lydia21
0
101

The End.