39,320 Topics
| |
[code] echo "<input value='$variable' type='submit' id=submit' name='submit'>"; [/code] That variable is an array which keeps repeating and changing numbers. (e.g. 1-20). Now using a switch statement to access the input submit button when pressed: [code] switch($_POST[submit]) { case '': break; } [/code] I cant figure out what code to construct … | |
We now have a preview with some screenshots and other information about phpLD version 3.3 that will be released in Beta in the next few days. [B][URL="http://www.phplinkdirectory.com/articlescript/phpLD_3_3_Preview.php"]phpLD 3.3 Preview[/URL][/B] Feel free to leave your feedback, and get ready for the next version! :) | |
Hi all... I've been reading this site for a while and now I have a question for you experts. I have a php page named edit.php. Code here: [code] <? // Connect database. include("connectdb.php"); // ***** This part will process when you Click on "Submit" button ***** // Check, if … | |
Hi I made a new page from bozUNtu theme, gonna use phpbb forum with this theme. Using this tutorial [url=http://www.phpbb.com/kb/article/add-a-new-custom-page-to-phpbb/]http://www.phpbb.com/kb/article/add-a-new-...-page-to-phpbb/[/url] The test forum is located here [url=http://www.almennt.com/wp/phpBB]http://www.almennt.com/wp/phpBB[/url] And the new page is located here [url=http://www.almennt.com/wp/phpBB/aboutus.php]http://www.almennt.com/wp/phpBB/aboutus.php[/url] what i am trying to do, is adding in news script "Cutenews" with that theme … | |
Grate Thanks, i have been designing website in html for some time now. i want to make my sites more powerful by using php or asp,but i can link up the pages for them to work like i do in html. i really need help,pls help. | |
I am new to this community and also new to PHP. My problem is that i have installed apache 2.2.6 and also have php 5.2 version. also made all the changes in conf file of apache. I also did all the neccesary things on PHP side (placing & changing files … | |
i want to view image as tooltip of small image on mouseover on that so what is the code for that?using javascript how it can be done? | |
1. CLICK ON “START MENU” 2. GO TO “CONTROL-PANEL” 3. CLICK ON “ADMINISTRATIVE TOOLS” ICON 4. GO TO “COMPUTER MANAGEMENT” 5. PLACE YOUR MOUSE ON THE ‘SERVICES AND APPLICATIONS’ 6. CLICK ON THE “+” ICON TO REVEAL YOUR ‘IIS SERVICES’ 7. CLICK ON THE “+” ICON TO REVEAL ‘WEBSITES’ 8. … | |
Hi Working on a photographers CMS, the idea is that they'll resize their images using a batch processing app, separate from the website, then I'd like them to be able to add a new section and select the entire directory (of resized images) for upload, not just individual files... If … | |
Hi All, I want to change the f5 property to html tag(i.e., <input type='file'>) for I.E.7.0 version and above. but its not working. Here the code is working in only in <input type='text'> but not working to <input type='file'> <html> <head> <script> document.onkeydown = function(){ if(window.event && window.event.keyCode == 116) … | |
I am a new student to php and I am working on my first project. I have created an html form, a php output form and a php confirm form. I am having trouble linking them together, when I fill in the information on my form it does not show … | |
Hello everyone, I am trying to add an auto generated map in property website. [url]http://www.whatahome.co.uk[/url] When some one click on details of any house , it should show the page with google map using the postcode of their house, as in other website is implemented. Is this achieveble easily. Anyone … | |
Hi, I'm working on web based project whereby I'm using Html and Php. I want to know how to create forums on a website that I have built. | |
Hello everybody, Yesterday I finished testing a new CMS I developed for a while, and now I'd like to ask for your help. Could you please help test this system under different PHP version/settings? The system works on a flat file database class I wrote, so no database setup or … | |
Hi, I need to create and implement a doubly linked list using PHP. Does anyone know of a good tutorial or resource for getting started? I understand the basic premise of a linked list, but really need some specific pointers on how to do so in PHP. ANY help would … | |
| |
| I have a bunch of checkboxes on one page, that look like this [code]<input type="checkbox" value="classic" name=subgenre[]></input>[/code] And when all the data is collected and inserted into a databse, it looks like this [code]$subgenre=$_POST[subgenre];[/code] This is supposed to collect every box that is checked and store it in a database … |
I have a string like this. $function = " array_splice($arr . $arrayimploded, end($index), 1, $data); "; $arr is an array $arr = array(0 => array(0 => "s", 1 => "es"), 1 => array(0 => "ing"), 2 => array(0 => "d", 1 => "ed") ); The $arrayimploded is "[0]" The end($index) … | |
I've been requested to write a PHP-driven database report by my boss. The reports will be located on our servers, where PHP is installed. However, the DBs that I'm supposed to read from are going to be located on the client machines. The servers are running SuSE 9.3 with Apache … | |
Hi everyone! I'm working on a project whereby the system is rule-based. I have to write the rules in either Common Lisp but the problem is that i'm using PHP for designing the interface and I'm not able to link these two languages. Could anyone plz help me?????? | |
| |
hi i have a login page which is allowing only registered user .it is working too...... but when the second page URL is typed it is getting displayed i want the all the user to enter through the first page.......when the second page URL is typed it should not get … | |
Hi , I need to access a MS-Word document using php... Plz suggest me how to do it.... Thanks in advance!!!! | |
I have an input submit button that once clicked activates php. Now the problem I have is that I have the neccessary code (or what i think is) to stop from the input button working (as I have used the same technique on the other input submit buttons). To get … | |
I hv downloaded html to pdf convertor but i am not able to use css in pdf file. can anyone hrlp me. | |
Hi there, Bit of a complicated query, for me anyway. lol Following code: [code]$url = 'http://www.cheapsmells.com/viewProduct.php?id=6590'; $html = file_get_contents($url); preg_match('/<div class='productOurPrice'?>(.+?)(\d+\.\d+)(.+?)?<\/div>/', $html, $match); $out = $match[2];[/code] Great, no problem! However, this next url I need to code to is a bit trickier as the tag data is, well see below... … | |
How should I implement "interactive refresh" (I don't even know how I should call it) where one visitor's action (klicking a link, submit button etc. - everything will do) activates page refreshing of other visitors on the same page? I know how to implement an automatic, periodic refresh but I … | |
Hi there...I'm pretty new at the PHP game, I've basically taught myself everything from looking at examples scripts and Google, and I've only been tinkering with scripts for about a week. Therefore, I'm confused about the error I'm getting when I try and run this part of the script. Basically, … | |
hi all, when i refresh the parent window then the child winodw should be closed using javascript and html. Thanks& Regards, swap. |
The End.