39,320 Topics
| |
[CODE] <select name="item2" id="item2" onchange="getPrice(this.id)" /> <option value="">Select medicine</option> <?php $sql = "SELECT ItemID, ItemName, Price FROM itemavail ORDER BY ItemName"; $rs = mysql_query($sql); while($row = mysql_fetch_array($rs)) { echo "<option value=\"".$row['Price']."\">".$row['ItemName']."</option> \n "; } ?> </select>[/CODE] this is selection menu to get item name. Here i need to get Item … | |
I have thousands of pieces of HTML code that I want to take a screen shot of and save as an image. I'm no programming genius, but I think I can make this happen. I have a dedicated Linux server running Ubuntu with PHP5. I've found tons of links about … | |
Hi, I currently have a 1 page site where i am trying to store a session variable and then call it into various other pages that are included when different links are chosen. I currently have the code passing the variable to the first included page but it does not … | |
Hey guys.. I'm doing my engineering and this time, I've to develop a website as a mini project. I'm thinking to build a project on Image and File hosting and sharing system using PHP and MySQL. What basic things do I need to learn and can I get any 'sample' … | |
One of my pages has a big table that displays info from a database but the data runs down the page so if i were to view data at the bottom i would have to scroll down then I wouldn't be able to see the titles of the data from … | |
Here is the problem. I have an HTML page that includes some javascripts. These scripts modify the HTML contents. Some PHP scripts are already in the same file. I want to pass some variables from Javascript to PHP script. If I use get or post, all changes made by javascript … | |
I'm looking for advanced PHP books, any one know a good one? Thanks. | |
Please help I want to submit my contact form to my email. This is my project and I have to submit it today Here is the code that I used for ****HTML file**** <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <html> <head> <title>Salus Management Consultants</title> <meta http-equiv="Content-Type" … | |
Hi all, In a secured php document I have a file uploader that was only for PDFs but they want xlsx, xls, ,docx, txt, rtf and ppt file extensions. To filter the files coming in I have this: [code] $allowedExtensions = array("txt","csv","htm","html","xml", "css","doc","xls","rtf","ppt","pdf","xlsx","docx"); foreach ($_FILES as $file) { if ($file['tmp_name'] … | |
I've had this problem before but have forgotten what caused it. I have field on my site that lets visitors sign up for our mailing list. After they enter their email address, they receive a confirmation email (to which they have to respond to be added) and I get an … | |
Hi, I'm trying to add pagination to the Wordpress plugin, FV Community News. You can see it functioning (without pagination and in its early stages - released it yesterday) here - [URL="http://www.siiimple.com/news"]http://www.siiimple.com/news[/URL]. I looked back in the php that would likely involve alterations, and here is the section I believe … | |
hi i have to do the following work.can anyone help me??? In PHP i have to get some links from user and i have to open all that link in a single click as in a new tab or new window. Can anyone suggest any good way to do this? | |
This Script add small im.. i guess i dont have to explain all know the back to top icon :D Script Contain 3 Files: I)JS - Back To Top Code.txt (the code u gonna add in each page) II)scrolltopcontrol.js (the javascript file) III) up.png (the image that u c) | |
I have an issue where my button call to php does not work correctly but if I run the sql manually it works just fine. Can someone please suggest what may be wrong. My file buttons.php has the following code, there are 9 other form call's but I cleaned it … | |
there have any example php code to read a image file n convert it to its hexadecimal equivalent? | |
I am trying to run one of the two files on my site using if file exist and readfile functions. When I give the file path in readfile() it runs properly. But when I use same file path into if file exist() it says "file does not exist". ================= It … | |
i like to start a new project in PHP that helps community. suggest me some new projects. i wish to get new ideas from Dani's. | |
Hi everyone. Could someone assist me with a problem I have. I want to display images in a folder.(image/). I have my MySQL table with my images location.(images/test.jpg) etc. I also have a legend_id where I specified id's (id_1, id_2, id_3) This is linked to cars. If I search according … | |
hi all, i am having a page wer we can browse some images and can upload that images.so now instead of browsing if i drag and drop the image and click the upload button i should get the image uploaded. so hw can i do that can any one please... … | |
I have a stress that I will really appreciate fast response. I have a form as below and I need the action script in php. [CODE]<?php $msg = "Message from Platform Form\n"; $msg .= "Aspirant's Background:\t$_POST[aspirant_background]\n"; $msg .= "Aspirant's choice:\t$_POST[aspirant_choice]\n"; $msg .= "Aspirant's Offer:\t$_POST[aspirant_offer]\n"; $msg .= "Aspirant's email:\t$_POST[aspirant_email]\n"; [B][COLOR="Red"]$msg .= … | |
[code] <form id="History" method="post" action="./php_lib/getHistoryProcess.php"> <button name="clearTableButton" type="submit" value="table2">Table 2 Orders</button> </form> [/code] the code above will process through the getHistoryProcess.php and return the result in the same page (the white blank page). I would really like the result pop up like ***** href=" " target="blank" style***** in other words, … | |
hi all, i need to implement drag and drop option in my site for images. so how can i do that can any one let me know please.... | |
help me to give explaination........soryyyyyy there is $HTTP_GET_VARS. | |
its a C# code . plz convert this code to PHP. [CODE]string hex_code; if ((FileUpload1.PostedFile != null) && (FileUpload1.PostedFile.ContentLength > 0)) { FileStream fls = new FileStream(FileUpload1.PostedFile.FileName, FileMode.Open, FileAccess.Read); byte[] blob = new byte[fls.Length]; fls.Read(blob, 0, System.Convert.ToInt32(fls.Length)); hex_code = ByteArrayToString(blob);[/CODE] | |
Why the checkbox is not working? it echoing "interest Array" [code] $_POST['interest'] ; foreach($_POST as $field => $Value) { echo "$field,$Value<br>"; }[/code] | |
Hi, I have two websites. I have an RSS feed from one that I want to host on the other, just the headlines and links back to the second website... Right now I'm using SimpleXML and fopen/fclose to bring in the XML documents. But for some reason it's not working... … | |
hello.. i am trying to do select multiple options of dropdown box. when i am select each option then appear textbox for each option. how to do? | |
My code is trying to assign a truck per location. My problem is in the Truck column, only one truck value is assigned for all, but when I use echo to see if my if-else works, it does. In fact, the correct truck is assigned for each location. But in … | |
Hi, i looking to find what would be the best cms + modules to host a kind of freeware site like the following [URL="http://www.androidfreeware.org/"]http://www.androidfreeware.org/[/URL] where users can upload apps, search for apps, detailed list of apps, category etc etc. I know literally any cms can be used, i mostly want … | |
hi,im currently major in data communication and networking and need help in my final year project. i am interested in doing a webprogramming project.i'd like to make a great project but currently is running out of ideas. thanx ;) |
The End.