1,741 Posted Topics

Member Avatar for nivas100
Member Avatar for jbinbpt
Member Avatar for mudhole
Member Avatar for zx81junky
Member Avatar for ShellyA
Member Avatar for Gadrel
Member Avatar for lordx78

Nothing wrong with line 4.. Check if the image exists and the path is correct. Edit: Dang! I didn't see your last post..

Member Avatar for lordx78
0
76
Member Avatar for lordx78
Member Avatar for squid44th

Someone got bored and 'drilled' holes (small, medium and big) on a piece of paper using a pen ?

Member Avatar for MidiMagic
1
86
Member Avatar for zachawp

Use blank index.html/index.php in the folder with flash files (simplest method). Or, as Auzzie has mentioned, use .htaccess.

Member Avatar for ryan_vietnow
0
65
Member Avatar for sneekula

[QUOTE=Sulley's Boo;510003]^ eww .. O_o a perfect nightmare ..[/QUOTE] Not if your boss is a sex bomb :P

Member Avatar for GrimJack
0
504
Member Avatar for jino

there is no where condition for limit. [icode] select * from table where limit 0,5 [/icode] Wrong. [icode] select * from table limit 0,5 [/icode] Right.

Member Avatar for jino
0
73
Member Avatar for evios

Thats because $_SESSION['name'], $_SESSION['password'] , $_SESSION['status'] might be empty. Where are you assigning the values for these session variables ? And Its always better to have .php extension to your scripts. :)

Member Avatar for evios
0
129
Member Avatar for cancer10

See [url=http://in.php.net/mysql_real_escape_string] this [/url] , Example 2.

Member Avatar for ryan_vietnow
0
207
Member Avatar for carobee

[code=php] <?php $x=1; if($x==1) { $disabled="disabled=true"; } else { $disabled="disabled=false"; } echo "<Input type='button' name='button' value='button' $disabled >"; ?> [/code] :) Like this ?

Member Avatar for carobee
0
114
Member Avatar for m.cliter

What do you mean by best format to store the selected option ? If the <option> value is an integer, have an integer field. If its an alphanumeric, have a varchar field. Is this what you are talking about ?

Member Avatar for johnsquibb
0
148
Member Avatar for Fred Penders
Member Avatar for zandiago
0
46
Member Avatar for aaronknightkc

Your insert query works fine on my computer. Check if you have the column names right. Also escape all the special characters using [url=http://in2.php.net/addslashes] addslashes [/url].

Member Avatar for aaronknightkc
0
134
Member Avatar for whoisit

Very simple. List all the comments in the table(if any), have a textarea and a button. When the button is clicked, add the contents of textarea to the comments column. Eg. [code=php] <?php //connect //select db if(isset(submit button)){ if(!empty(textarea){ //insert into table (comments) values (textarea_contents) } } //query to display …

Member Avatar for nav33n
0
109
Member Avatar for nukewarm
Member Avatar for RocknRollAnimal
Member Avatar for wannabeIT
Member Avatar for kishou

I don't think its possible. When you set a cookie, setcookie expects parameter 1 and paramter 2 to be a string and not an array. [url]http://in2.php.net/setcookie[/url] Look at example 3 ! [quote]You may also set array cookies by using array notation in the cookie name. This has the effect of …

Member Avatar for silviuks
0
87
Member Avatar for evios

[icode]<div><label>Name:<?php echo $_POST["name"];? ></label><br></div>[/icode] In this line, you have a whitespace after $_POST["name"];? here > It should have been like ?> . Turn on error reporting. It will help you identify your errors. If you have access to php.ini file, turn on display_errors. If you don't have access to php.ini …

Member Avatar for nav33n
0
164
Member Avatar for pink_zippy_123

[QUOTE=zanzo;546750]hello, im a new user :S and i need help !! i need to use the hyperlink value as variable <a href="Details.php"><?php echo "$first" . " " . "$last<br>";?></a> i need to get $first and $fast to use them later in the code so how could i? plz reply fast …

Member Avatar for digital-ether
0
1K
Member Avatar for amin007

huh! How is this question (?) related to php ? And what does it even mean ?

Member Avatar for orko
0
120
Member Avatar for lydia21

Check example 4 here. [url]http://us.php.net/function.mail[/url] . And, $body1 can have the variable values within double quotes. [icode]$body1 = "your resume $restitle was posted on $date"; [/icode]

Member Avatar for orko
0
138
Member Avatar for lordx78

Well, If you don't specify the storage engine type, the default is MyISAM. There are different storage engine types. Here is the detailed description of the storage engines. [url]http://dev.mysql.com/tech-resources/articles/storage-engine/part_1.html[/url] Cheers, Naveen

Member Avatar for lordx78
0
108
Member Avatar for Auzzie

uhm! I have already seen you in php forum! But, welcome (?) to Daniweb :P

Member Avatar for Serunson
0
95
Member Avatar for MEDIAMAN39
Member Avatar for gilsygirl
Member Avatar for Esperentiste
Member Avatar for Nepenthe8
Member Avatar for shaninc
Member Avatar for Otakh

[quote]She never brings the ball back when you throw it, and when she gets tired of the game she buries the ball. [/quote] LOL.. Welcome to Daniweb otakh! :)

Member Avatar for Serunson
0
95
Member Avatar for amala009
Member Avatar for sbader7
Member Avatar for Paddy533
Member Avatar for sexykim
Member Avatar for Vega_Knight
Member Avatar for ingridcontreras
Member Avatar for neocoder
Member Avatar for striker_24
Member Avatar for mom_of_3
Member Avatar for Serunson
1
94
Member Avatar for runtime error
Member Avatar for zanzo

Yeah. This is just a simple example how you can assign a value to a field. [code=php] <html> <body> <form method="post" name="hidden" action="hidden.php"> <input type="text" name="action"> <input type="button" name="button" value="Update" onclick="javascript: document.hidden.action.value='1';"> <input type="button" name="button" value="Delete" onclick="javascript: document.hidden.action.value='2';"> </form> </body> </html> [/code]

Member Avatar for zanzo
0
3K
Member Avatar for lordx78
Member Avatar for kings

Using css.. :) You can post this question in css to get better replies..

Member Avatar for nav33n
0
164
Member Avatar for Suetan

Line 179. $result = [icode]mysql_query->($sql); [/icode] should be [icode]$result = mysql_query($sql);[/icode] :)

Member Avatar for Suetan
0
205
Member Avatar for JeniF

[quote]if the user changes any values in the checkbox array, I need the db updated with all changes.[/quote] You mean, from checked to unchecked and vice versa ? As ShawnCplus has already mentioned, only those checkboxes which are 'set' will be passed on to the next page. Well, if you …

Member Avatar for JeniF
0
320

The End.