39,326 Topics
| |
Good Afternoon, I am realtivly new to the wonderfull world of PHP and am reaching out for help on a project I am currently working on. I would appreciate any help on this issue. Thank You in Advance! Objective: Create Dynamic Multiple Drop Down Boxs - Options to be stored … | |
I need to delete a file using php function and then redirected the page to another one. I tried with this code : ----------------------------------------- [ICODE]delete("$file"); function delete($file){ unlink ($file); header("Location: npp.php"); }[/ICODE] Works fine in my local host but the following error coming when upload to server : [ICODE]Cannot modify … | |
My web page was working fine last week and when I went to work on it again I got this: Notice: Undefined index: courseID in C:\wamp\www\1.1\lib\coursePage.php.inc on line 7 Notice: Trying to get property of non-object in C:\wamp\www\1.1\lib\coursePage.php.inc on line 10 we have no data Here is my coursePage.php.inc [code] … | |
Hi is there is any other option to redirect a php page to other page. Other than "header " ??? Thanks Rajeesh | |
Hi, Let's say i have a form in [url]www.111.com/form.html[/url] where user can submit name and surname with POST action. Can we send the POST data (name and surname) from [url]www.111.com/form.html[/url] to [url]www.222.com/process.php[/url] to be processed? Thanks | |
| I'm using PHP to piece together photos on my website. I have the pieces in the correct order, but there is white space between each photo. At the moment, the only Css I have is placing the black border around the specified outer edges of the photo - I added … |
hi guys, just want to know how to do alert via email when a new record updated in database. i use php and mySql. thanks. | |
Hi i wrote a code to upload 4 images. I wrote code and works fine for my need. I wrote some thing like this. file1,file2.... file4 as the names of file fields. and in the process.php page like this [ICODE]if ($_FILES['file1']['name'] != '') { //// file upload } then file … | |
I have come up with a day comparison script and it worked fine until daylight saving kicked in. Now all the dates i insert into my database are 1 hour faster. So current date plus 7 days = 7 days + 1 hour. How do i solve this? The code … | |
Is it possible to have an include function several times on the same page pointing to the same php file? Here is my setup: I have a page (form.php) which uses forms to run a query in another (results.php). This page displays several tables based on how many records are … | |
i have this code. the looping code. but i dont know how to pass the value to the next page. help me please! :P <?php $req = $_POST['req']; echo "<form>"; echo "</form>"; $i=1; while($i <= $req) { echo "<label>Requirement " . $i . " :</label><br/"; echo "<input name=\"req".$i."\" type=\"text\" /> … | |
Dear all, I had set the 17- character long transaction id, that i got from the paypal in the successful completion of the order transaction, in the DoAuthorization request to paypal.. But i am getting an invalid_transaction_id response from the paypal. What will i do.. Please help anyone.. Thanks | |
Hi-DaniWeb community! I'm New here and already have a question: What software or program used <URL SNIPPED> Best Regards hilimili | |
Table does not display any border when php outputs data from MySQL. I'm trying to set the following styles for table: border-width: thin border-style: solid Below is the snippet of code I'm having trouble with. print( "<table border-width = thin border-style = solid cellpadding = 1 width = 1400px>" ); … | |
I want to pass a php variable into xml script. Essentially what I want to achive is: var xmlvariable= '$phpvariable'; Is there a simple solution to this? Many Thanks Nick | |
Hi, I am making a site, in firefox it looks fine, but in IE its a mess, take a look at the first page, you will see that the images are not filling the space as they do with the firefox, although they have the same deminsions. The site is … | |
Hi guys and gals, I am using the following code as a searchbox at the top of my site. [code]<form name="classic" method="post" action="error.php"> Quicksearch: <input name="INPUT" id="INPUT" type="text" value="" /> <select name="countries" onchange="updatecities(this.selectedIndex); document.classic.action=(this.value)"> <option value="" selected>Choose a category</option> <option value="search1.php">Category One</option> <option value="search2.php">Category Two</option> <option value="search3.php">Category Three</option> <option value="search4.php">Category … | |
Hello eveybody, I am currently creating a forum system and have gone completely blank as how to fix this issue! The issue is as follows: A topic is created. A user comes along and comments on the topic and message is posted on the thread. Right! Now another user comes … | |
I can pass my SWF file a variable from PHP using Flashvars, but when I try to pass in a number Flash tells me it's NaN. Is there something I can do to make sure it is a number? I'm not sure what to do here. Can someone help? Thanks … | |
Hi I had a database . I need to take one of the cell content into an array. I had code but not working [ICODE]$select=mysql_query("SELECT * from db where name='rajeesh'") or die(mysql_error()); $new=mysql_fetch_array($select); $forfriends=$new['first']; $forf=array ($forfriends); while (list ($key, $val) = each ($forfriends)) { echo "$key -> $val <br>"; }[/ICODE] … | |
| hey all, could someone please help me with my htaccess file... i am currently running a wordpress blog, and a url for a search (here the term 'SEARCHTERM' is searched) is like this: [CODE]http://www.bthaxor.com/?s=SEARCHTERM&search=Search [/CODE] i would like to use mod_rewrite to convert such a url to this (exactly like … |
[CODE]<?php // find out the domain: $domain = $_SERVER['HTTP_HOST']; // find out the path to the current file: $path = $_SERVER['SCRIPT_NAME']; // find out the QueryString: $queryString = $_SERVER['QUERY_STRING']; // put it all together: $url = "http://" . $domain . $path . "?" . $queryString; echo "The current URL is: … | |
Comparing to .NEt and Java programmers, my friend argues that PHP is an easy to learn and do platform. I need some points to counter him. you are welcome. | |
I'm trying to use mysqli with Apache 2.0.63, Mysql 5.1.32, and Php 5.2.9-1 for Windows. Looking at phpinfo() I can see mysqli installed. I can also run a mysql query. However when I attempt to run a prepared statment I it fails at the if statement if($stmt->prepare($sql)) with the following … | |
i have a parse error and i just cant figure out what it is because it seems my code is right but maby im wrong any advise is apreciated aswell heres my code [CODE] <DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="en" lng="en"> <head> <title> Background Colors </title> … | |
Hello - I'm new to PHP, only been learning it for about a month, but I think I am starting to get the hang of it. I am working on a project that involves the Google Maps API which uses markers that are populated by values from a MySQL database. … | |
I have two files, index.php and config.php. Config.php has a lot of variables, such as $CONF['sql_user'], $CONF['installed'], etc. How can I edit those variables from index.php? For example, if someone hasn't used my script yet, then $CONF['installed'] = 'no'. When they do use it, I want $CONF['installed'] = 'yes'. How … | |
Ok im a complete noob to PHP. I'm trying to make a contact form. I had it working perfectly before. But now it seems that I have messed sometime up and I dont know what. I'm using this code: NOTE: I put the email address to [email]blank@blank.com[/email] solely to not … | |
Hello, I have this script for an ajax slideshow. I made the functions and they are working perfect in Firefox, but in IE they are not working? could the error be when I call the functions, or might it be the functions themselves here are the functions [CODE] function isIE() … | |
Hi all, I've got this problem where I'm using one "include header" for my website. It has in it the navigation and because my site is spread out in and out of folders I need to use absolute links to connect all the various pages. i.e [code] <a href="<?php echo … |
The End.