39,323 Topics
| |
I know I've been here before, but I need additional help. I somehow need the following table to have HTML code that will create a table with two columns and three rows. The top left column will have the title rows, the middle will have columns, the bottom will have … | |
Hi, I am trying to call the '`getMembershipDetsPrice()`' php function in the html drop down list 'duration'. I tried to follow the W3schools tutorial but when I changed the value the html printed again. When the dropdownlist changed the value the label needs to be filled by the returned value … | |
Hi I have the following code so far. Basically I have a drop down list were the user selects the type of membership he wants. When he clicks the button buy now from the database the membership cost and type are displayed in the pg. The problem is that I … | |
Hello Guys, Iwant to create a form builder using php and jquery, it is possible or not? This is my code. <div id="form_gen"> <div class=""> <hr> <h4>Create Database and Table</h4> <table class="bar form_evalution"> <tr> <th>Database Name:</th> <td><input type="text" class="form-control" placeholder="Input Database Name"></td> </tr> <tr> <th cols="auto">Table Name:</th> <td><input type="text" class="form-control" … | |
I am very confused with the pagination system of my site, the site consist two services android games and movies but in each they all have their categories for example the android games has categories as follows: * ANDRIOD GAMES * 1. Arcade 2. Sports 3. Action 4. Adventure 5. … | |
Hello Guys, I just Worried here, This code it show to display multiple Images from database and The Name of Image, And I want to Display it Vertically then the Name of Images it should be the under of Images. I dont know how to do this thanks Guys. hers … | |
I'm hosting my php file in WAMPSERVER PHP Version 5.4.3 and my database is somewhere in the uni server I keep getting this error and I don't know why * A connection attempt failed because the connected party did not properly respond after a period of time or established connection … | |
i have two classes Session and SupplierSession. SupplierSession is supposed to inherit from Session. how do i ensure that the session_start() in the __construct() method of Session does not get called in SupplierSession. here are the class definitions. session.php <?php class Session { private $loggedIn = false; public $userID; public … | |
There is a little bit prob with my code, My Prob: When i type name or place etc in search bar it show me the entire data stored in database, i need it show what i searching for... script for Search: <div id="wb_Form1" style="position:absolute;width:864px;height:147px;"> <form name="q" method="get" action="test-result.php" id="Form1"> <input … | |
| I've been happily writing code for a bit of software that loosely is to do with project management. For that reason it has a dashboard-esque look and feel. It is highly customized and luckily because I've used MVC the views are separated from the db stuff. From day 1 I … |
I need to write a script that allows a user to enter a numeric grade and then determine the letter grade. Use a PHP document and a HTML document containing a form with 5 text boxes to enter the numeric grades. Print a message to the user stating whether or … | |
Hello, I've tried to set up moodle (php based) elearning, using Windows OS. Yet, I am receiving an error message. I already tried twice installing it in my windows system and receiving the same error message: -------------- The page isn't redirecting properly Firefox has detected that the server is redirecting … | |
This is a function I created to facilitate the sending of PHP emails. Just give it the name and email of who your sending it to, and your name and email. A subject and a message. These options are required. The type, cc and bcc options are optional. By default, … | |
I am try to Create a program in php that allows the user to send bulk SMS, please help? | |
I need to add a nested table to my php page so that when I put it in my browser, just a table will appear with 2 columns and 3 rows. In the top left column I need the word "WIDTH", and right below that it will say "HEIGHT". The … | |
Hello Guys, I have a Question, is this possible in php to make a Form Generator? .. For Online Evaluation. Tnx Guys, is there any tutorial? can you give me a LINK? Tnx in Advance! | |
i have the following php. the script gives me an error telling me that i have not selected a file to upload even when i have done so. if i try to access the $_FILES['minuteFile']['tmp_name'] i don't get anything but the $_FILES['minuteFile']['name'] would be having some. what could be the … | |
I search my database and get a few records in a table in my html/php page.how can i select a row to copy its data in the coresponding textboxes of a form in the same page? | |
I need to write a script which can display an XHTML table with a numeric value displayed in each table cell. The script should use a nested loop construct and should be able, by changing the value of two variables (for example, $intWidth and $intHeight). to adjust the size of … | |
hi,,, i need question about populate table based on dropdown this my php file **kecamatan.php** <?php require 'config_db.php'; $self='kelurahan.php'; if (isset($_POST['action'])&&$_POST['action']=='edit'){ $namakelurahan = _post('namakelurahan'); if ($namakelurahan==''){ r2($self,'e','Nama kelurahan tidak boleh kosong'); } $id = _post('id'); $grp = ORM::for_table('kelurahan')->find_one($id); $grp->set('namakelurahan', $namakelurahan); $grp->save(); r2($self,'s','Perubahan data berhasil di lakukan'); } elseif (isset($_POST['action'])&&$_POST['action']=='delete'){ $trid … | |
i have a problem to create a booking page. i currently develop a lend/borrow hardware system. my friend want me to include a list of items that still available and not been borrowed yet based on date chosen before user want to continue booking( ex: hotel reservation 'check availability'). i … | |
I have the list of tags in php and I want to get the contents. for example: <li class="zc-ssl-pg" id="row0-1" style=""> <span id="row1Time" class="zc-ssl-pg-time">6:00 PM</span> <a id="rowTitle1" class="zc-ssl-pg-title" href='http://www.mysite.com'>Melissa & Joey</a> <a class="zc-ssl-pg-ep" href='http://www.mysite.com'>"House Broken"</a> <li class="zc-ssl-pg" id="row1-1" style=""> <span id="row1Time" class="zc-ssl-pg-time">6:00 PM</span> <a id="rowTitle1" class="zc-ssl-pg-title" href='http://www.mysite.com'>The Middle</a> <a class="zc-ssl-pg-ep" … | |
**I want to fetch data from database and show in multiple check box value e.g id_number of laptop in 5 checkboxes with different values but really dont get how to do this..hope anyone can show me easy code in php** | |
Hello, when i click on option of dropdown box they could not select any option. Its working good in all other browsers.option coming through ajax. I have a problem in dropdown select option in IE11. see attached screenshot .Please help me someone to solve my problem. Thanks & Regards Nits | |
Can you help to show how to upload multiple image with php and mysql, please? | |
Hi Folks, I need help with my Project. I need to pull a value from the populated dropdown list using an ORACLE DB. When I pulled that value, I need to fill the quantity with the corresponding quantity value and show it to the user. And I also need to … | |
Hi hope someone can help me with the folowing: if( $verscil_huwelijksdat_tot_zestien_jaar->format('%R%a') >= 0 ) { echo"bla bla"; } dosn't work it only works when >=1 or <=-1 and wy not >=0 ? | |
| So I read somewhere that your views should not contain any logic in them. But let's say you pull back a query from your model which displays four boxes two of them need to be checked in the view. I'd pass this as an array into the view but in … |
Hi All, I am completely new to the concept of soap and need to generate multiple xml response at the response page. I am requesting some parameters and in turn want to generate an xml response in multiple nodes. //****MY REQUEST XML STARTS*********** <?xml version="1.0" encoding="UTF-8"?> -<SOAP-ENV:Envelope xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" … | |
if(document.form1.captcha.value != <?php echo json_encode($code) ?>){ alert("qq. \n"); return false; } whats wrong with my code? syntax error |
The End.