39,316 Topics

Member Avatar for
Member Avatar for cdes1145

Basically i'm new to web design and I have the basics of html only. I am looking to add a feed(I think) onto my website that allows a user to input text and it is then displayed in a list above the person befores text. Am I aiming to high …

Member Avatar for Borzoi
0
176
Member Avatar for ankit.pandey3

[CODE]<?php echo $error_msg=''; if(isset($_POST['submit'])) { $LoginId=$_POST['LoginId']; $Password1=$_POST['Password1']; $Password2=$_POST['Password2']; $Name=$_POST['Name']; $Age=$_POST['Age']; $BloodGroup=$_POST['BloodGroup']; $Sex=$_POST['Sex']; $Qualification=$_POST['Qualification']; $Email=$_POST['Email']; $Address=$_POST['Address']; $AboutYourself=$_POST['AboutYourself']; $countCheck=count($_POST['checkbox']); echo $countCheck; //$checkbox=$_POST['checkbox']; //$countCheck=count($checkbox); if(empty($LoginId)){echo 'Please enter Login Id';} elseif(empty($Password1)){echo 'Please enter Password';} elseif(empty($Password2)){echo 'Please confirm Password';} elseif($Password1!==$Password2){echo 'Password didn't match';} elseif(empty($Name)){echo 'Please enter Name';} elseif(empty($Age)){echo 'Please enter Age';} elseif(empty($Sex)){echo 'Please enter Sex';} …

0
53
Member Avatar for prathameshz

hi.... whenever i use the header in php this error is occure. whats the solution of this error Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\simple.php:11)

Member Avatar for prathameshz
0
184
Member Avatar for zyzagy

Hi, I am kind of new to PHP, learning through books and online resources but I am having difficulties with what seems like an easy problem. [CODE]if($pageid == 1){ echo ""; } else { [COLOR="Green"]echo '<form action="delete_ad.php" method="post">'; echo '<input name="deleteid" type="text" value="" id="deleteid" hspace="10"/>'; echo '<input name="delete" type="submit" value="Delete …

Member Avatar for Borzoi
0
167
Member Avatar for Moppy

Morning. I'm new to all this forum malarque, but lets give it a stab! I need to prove some PHP code works and does what it should for college, but the server doesn't run PHP apparently. I thought I could somehow get the website to relay what the user has …

Member Avatar for pritaeas
0
127
Member Avatar for veledrom

Hi, I want to re-use already estanbished DB connection but I don't know know how to do it. Please help me to modify my code below. Thanks in advance [CODE]function connectDB(){ $host = "localhost"; $uid = "root"; $psw = ""; $db = "mydb"; $hostc = @mysql_connect($host, $uid, $psw); if($hostc){ $dbc …

Member Avatar for veledrom
0
89
Member Avatar for nsam

Hi, I am stuck in a simple problem due to checkbox The problem is that in the value attribute of checkbox I am placing a value which I want to retrieve [CODE]echo "<td><input type='checkbox' value='".$row['docid']."' name='asgn[]'>Assign</td>";[/CODE] after this I am using foreach() In the output page i get a warning …

Member Avatar for mahavir123
0
101
Member Avatar for eat@moes

Hi, I am pretty new to HTML and brand new to PHP. I am trying to put together a simple internal website on a Linux box to keep track of some inventory. I would like to be able to click a link in the sidebar and have it display that …

Member Avatar for eat@moes
0
115
Member Avatar for choosenalpha

Hello All, I have went through my code and checked for any whitespace or blank spaces and also missing closing marks and etc. But the error message clearly states that it is initiated at line 8 of my php code. Is it my echo in the code? Can someone please …

Member Avatar for choosenalpha
0
250
Member Avatar for micahgeorge

I wanted to send an automated email 24hrs before an ppointment is made, and here is the code i wrote but it is first checking the date so not working correctly, please help $i=0; while($i<=$num) { $row=mysql_fetch_assoc($select); $ID=$row['ID']; $d=$row['date']; $date=date("Y-m-d"); $rem=$row['reminder']; $email=$row['email']; if(($rem=='no')&&($d==$date)) { if($row['time']<='24:00:00') { $headers = "From: [email]johndoe@yahoo.com[/email]"; …

Member Avatar for diafol
0
56
Member Avatar for ddggttff3

Hello. I am kind of new to PHP and mysql, and I am wondering on how I would go about coding up a system that would allow me to save multiple values to one row in a mysql database, and later read each separately. I am coding up a mac …

Member Avatar for ddggttff3
0
154
Member Avatar for atticusr5

Hello all, I have a question that is more based off of a unique occurrence (unique for me having no real prior php knowledge). I am trying to create a webpage where a user inputs a password, and a php reads the user inputed key and then compares it to …

Member Avatar for atticusr5
0
134
Member Avatar for teedoff

Ok I have created a simple form in order to build new product pages using php. I wanted to be able to have a simple form that a data entry person here could input text and such areas as page titles, meta content, brand names, and other text on the …

Member Avatar for teedoff
0
1K
Member Avatar for gunnarflax

I'm trying to create an object derived from the MySQLi object to easier handle database connections for my application. The thing is that I do not know how I shall be able to initalize the connection and keep it contained in the object. Let me illustrate what I mean: [CODE] …

Member Avatar for gunnarflax
0
130
Member Avatar for khushbooatkol

[CODE]echo"<td bgcolor='#FFFFFF'><a href=\"update.php?emailid=".$rows['emailid']."\"><img src='library/edit1.gif' border='0'></td></tr>";[/CODE] I want to change the image 'edit1.gif' to 'edit1-o.gif' onmouseover and back to edit1.gif onmouseout event.how to do this while staying in these php quotes? TIA

Member Avatar for ko ko
0
90
Member Avatar for tomeemot

I found a php mail form online that echos a text success message, but need to redirect it to a new page instead. I love all the functions in the code except for the text echo. I tried <input type="hidden" name="next-url" value="test.com"> and <? header(Location: file.php); ?> but the form …

Member Avatar for emodweb
0
472
Member Avatar for Cool&Awesome

Hi friends, I got a pretty big problem. I got a big directory full of images, like 2000 of them (and rapidly rising). For now, the front-end works perfectly with it, but to avoid getting to the point of 200.000 and total breakdown of it all, i decided to put …

Member Avatar for pritaeas
0
67
Member Avatar for benjaminFowl87

Hi, I posted this in the Computer science area but am assuming not many people use that place. I want to create a mini gocompare site, what sought of thing would i need to do to create something like this?

0
74
Member Avatar for showman13

OK, so I've read that it is possible to use session variables across multiple sub-domains and domains by placing the following in the .htaccess file on each of the prospective domains: php_value session.gc_maxlifetime 14400 php_value session.cookie_domain ".domain_name.com" where domain_name.com is the domain where the session was initiated. I know this …

Member Avatar for showman13
0
266
Member Avatar for showman13

Good Morning. I'm hoping someone can tell me why this isn't working, or maybe if it isn't supposed to work. I've been reading on various websites that you can use variables within CSS if you don't save the style sheet as a .css, but rather as a .php and just …

Member Avatar for showman13
0
98
Member Avatar for Puster

Hello! Yes, well, I am started to make a upload fucntion. question number one: I've made a if statement that should recognize what file extension the file has, if it has a .png extension it would be inserted into the picture database, and if it is a .txt file it …

Member Avatar for madCoder
0
128
Member Avatar for Awah Mohamed

hey people seriously , this code is going to kill me i wrote it yesterday and upto now it cant work i wrote it more than one time and i review it more than 10 times but i didnt found the error so this is my code and bellow is …

Member Avatar for chrishea
0
97
Member Avatar for roachae

I'm pulling a date value (not a datetime value) from a MySQL database, but I need to subtract 30 days from that date, and not sure how to do it. I found a sample using mktime() to break up the day-month-year and subtracting 30 days from the 'day' component, but …

Member Avatar for hielo
0
308
Member Avatar for pearll

[CODE]<tr> <td colspan="2" align="center"> <input type="button" class="btn" value="New" name="New" onClick="window.location.href='new2.php'" onMouseOver="hov(this,'btn btnhov')" onMouseOut="hov(this,'btn')" align="absmiddle"> &nbsp; <input type="submit" value="Delete" name="delete" class="btn" onMouseOver="hov(this,'btn btnhov')" onMouseOut="hov(this,'btn')" ></td> </tr>[/CODE] I am unable to make thses two buttons centred .... any help?? TIA

Member Avatar for nonshatter
0
84
Member Avatar for eyadox
Member Avatar for rolyestemonio

What is the wrong with this guys? Why is it that when i view the month of November 2010 it also view the month of 2009?Can anyone help me? [code]<?php include("db.php"); $query = mysql_query("SELECT distinct YEAR(local_date) as year FROM tbl_localnews order by local_date desc"); while($row = mysql_fetch_array($query)) { //$row = …

Member Avatar for pritaeas
0
90
Member Avatar for Krstevski

Hello friends, I have problem with showing registration form on joomla. I use unique template for registration form, I want to add only registration form. How to do this ? Thanks.

0
64
Member Avatar for knarffrank

Help I'm having trouble on passing value to another page, I'm using PHP. My goal is when i click a link it will move to another page and the value of that link will be received by the other page. make sense? can someone help me with this? thanks..

Member Avatar for Borzoi
0
221
Member Avatar for jhonnatas

Hi friends! i need your help!i have an admin panel that I'm developing for my site it has a login page you put your login and password then you can use the main_admin_page.php where u can insert,delete...but if i type the path to the main_admin_page i can use it without …

Member Avatar for Borzoi
0
83
Member Avatar for muralibobby2015

hello.... i want to search google images from my site. i got this code from google. but in this i want a link to each image to add images to my folder. how to do this? [CODE]<!-- copyright (c) 2009 Google inc. You are free to copy and use this …

0
71

The End.