39,320 Topics
| |
Hi, I have two forms: one which displays the list of projects in a dropdown box from mysql db second one is a date picker form. after this i have a submit button. Now, when i click the submit button I want to get the details of the Users corresponding … | |
index.php file <script type="text/javascript" src="../lib/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="../lib/jquery.jcarousel.min.js"></script> <script type="text/javascript"> jQuery(document).ready(function() { jQuery('#mycarousel').jcarousel({ vertical: true, scroll: 3, visible: 12 }); }); </script> <ul id="mycarousel" class="jcarousel jcarousel-skin-tango"> <li>I love you haha.</li> <li>I love you haha.</li> <li>I love you haha.</li> </ul> --------------------------------------------------------------------------- From the above code, I use firebug to inspect the … | |
Hi guys! Can anybody tell me - how it's possible to see and change php-code of blocks in drupal? Big thanks in advance) | |
I have used the delete query $sql="DELETE FROM table_name WHERE id='$ids'"; but the problem isthat it deletes the record but the record does not disappears from the page. It dissappears after refreshing the code. I have used the meta tag for page refresh but itis not working. Can any one … | |
Good day! I just want to ask on how to setup a site so that when i search the site or business name on any search engine, it will be listed in the search result. Just like in Google. Thank you & God bless! | |
Hi all, I'm really struggling with this and so far haven't been able to find a solution on the Internet. I have a MySQL table called Journey which has a Date field. The dates are stored in the format YYYY-MM-DD. I'm trying to construct a query where I can get … | |
Hello I find a tutorial on [url]www.phpeasystep.com[/url] about updating multiple records can anyone tell me how to make it work for php 5. When I click on update it shows the same page ...Please any help would be appreciated | |
Dear All, I would like to add a new row tex boxed into my form just like when we add column for a new table under phpmyadmin where the option of Add number of column and then press the button go when we try to structure a new table. How … | |
Hello everyone, I am looking to exclude some specific content from a cache system based on APC. This content is a complete directory. So if you have any idea, please let me know. | |
i want a script to upload image and display image in the same page....plus i want another thing that i have many fields in that page...so i want to only refresh image part after uploading to show image.... although i have tried to do so...but i can't do it without … | |
plz help me in creating a linked drop down button for date,month and year. means on clicking month like feb it will show date upto 29 and on clicking jan it will show 31. also i need it so that i can made a similar type of linked button for … | |
Hi, I am using cURL to grab the contents of a webpage which contains a table. I am trying to make an array out of the table contents, with the column headings as the array keys. Unfortunately the first row of the table, before the headers, has pagination which is … | |
I need to be able to display a screenshot grab of specific websites in thumbnail size. Instead of going to the site and screenshotting it, I would like PHP to do the job for me. Is this possible? | |
please let someone just give a detail of significant difference between Ajax and PHP. WHICH I CAN ENJOY PROGRAMMING | |
Dear All, If anybody can help a poor simpleton newbie I would really appreciate it. It maybe the monday syndrome but nothing i do works! I have a multi dimensional array made in the following manner. $datasq["$part_no"]["item_ver"]="$item_ver"; $datasq["$part_no"]["po_id"]="$po_id"; $datasq["$part_no"]["weeky"]="$weeky"; $datasq["$part_no"]["qnty"]="$qnty"; part_no = varchar part number po_id = varchar order number … | |
:-/ my html form consists of drop down for selecting city and state. radio buttons for selecting gender. and a few check boxes. the form is filled and the values are stored in a database table. I am working on a php script, which retrieves values from database into an … | |
I want to develop application using PHP. One module in this application displays attendance of students under particular teacher, between given two dates. The structure of tables in database - 1. student_info(Roll_No, Teacher_Id, First_Name, Last_Name) 2. attendance_info(Teacher_Id,Roll_No,Date,Present) Present stores '1' if student is present on that date and '0' if … | |
I have create a table as "user" with colm user pass redirect and add the three user as: user : Pass : Redirect a123 123 google.com b123 123 hotmail.com c123 123 facebook.com i have also create a php page with login session but i want that when i entered the … | |
When uploading images using plugins on wordpress I get an HTTP error. The plugins that give me the error are: nexGEN gallery and shopplugin. I have posted multiple threads on the WP support forums and I dont even get replies. The only information I can give is I get an … | |
hi friends, In my project, want to display data from Mysql between two date. Date was given by user only, according to that it take info from database, And important things is display the retrieve information through table, My Html coding : [CODE] <body> <form method="post" action="reportviewinfo.php"> <label>From Time : … | |
Hi guys i have problem regarding to display specific row record on the page. I have one mysql table named as candidates. Its have 25 rows. I have a php page and i want to display the 20 no row on the page. What action to be done there. Plz … | |
Hi all... I need your help, there must be something I am not seeing here when trying to update a table of information in a database. Here is the code I am currently using. In my program I have this call... [CODE] if (($_POST['changeAddress'] != "") || ($_POST['changeAddress'] != null)) … | |
function redirectToHTTPS() { if($_SERVER['HTTPS']!="on") { $redirect= "https://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; header("Location:$redirect"); } } | |
hi. am new to php. got a problem with inserting data into another table in mysql database afta. Here is the code <td><form action="ProCollegePrograms.php" method="post"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><span class="textblack">College Code</span><span class="required"><font color="#CC0000">*</font></span><br></td> <td><input name="CollegeCode" type="text" class="required username" id="CollegeCode" size="40" minlength="2" ></td> <tr> </ </tr> <tr> <th … | |
Hi there, I have a system where a user can upload an image, once an image has been uploaded php crops the image and then resizes to to a thumbnail. This works perfectly well with JPEGs, but does not work with PNGs and GIFs. I have used code to make … | |
Hello can anybody help me with constructing a PHP ODBC code for retrieving records in a database? here's my code: [CODE] <html> <head> <title>HCPSMSHS: Grade Viewing System</title> <link rel="stylesheet" href="css.css" type="text/css" charset="UTF-8" media="all"> </head> <BODY> <?php $conn=odbc_connect('DB2','','') or die("connect error: ".odbc_error()); $username=trim(stripslashes($_POST['username'])); $password=trim(stripslashes($_POST['password'])); $sql="SELECT * FROM tblstudents WHERE S_ID='$username' AND … | |
Hi, I've created a script to understand the logic of caching. Do you think my example below makes sense? I am asking because I've never used caching before. 1. Check if HTML version of current testfile.php exist in cache folder as testfile.html a. If YES then compare content of testpage.php … | |
| I have recieved this, Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\...register.php on line 16 I dont understand to be honest what this mean as i am new to php and mysql. What do i need to do to fix this problem? Below is my php. … |
i'm realy confused on how to do this.. deperately need help. i have two tables as below: table1- qid(primarykey), qtitle table2- aid(primarykey), atitle, qid example, table1- (qid=1; qtitle=fruits), (qid=2; qtitle=vehicle) table2- (aid=1; atitle=apple; qid=1), (aid=2; atitle=banana; qid=1), (aid=3; atitle=car; qid=2), (aid=4; atitle=bike; qid=2), (aid=5; atitle=bus; qid=2); when i retrieve the … | |
Hi. I would like to know if it would be possible, using PHP to ping a port of a switch, knowing the ip address of that switch. How can this be achieved? Thank you. |
The End.