39,323 Topics

Member Avatar for
Member Avatar for Ana D.

Hi, I have a PHP file that gets an XML files from a HTML form. The PHP files needs to generate a new HTML file containing a table with the the data retrived from the XML file. I was able to this this properly (using expat). However, before adding the …

Member Avatar for veedeoo
0
280
Member Avatar for lgriess

I've seen other old old posts from 5 years ago asking why you would want to use cold fusion and no one came up with a proper answer as to why to use it over a more popular language platform like PHP or .Net. I'm against Cold Fusion, I've seen …

Member Avatar for arrgh
-1
237
Member Avatar for MnMmatz

Notice: Undefined index: txt1 in C:\xampp\htdocs\php\conversion.php on line 76 Notice: Undefined index: select1 in C:\xampp\htdocs\php\conversion.php on line 77 Notice: Undefined index: select2 in C:\xampp\htdocs\php\conversion.php on line 78 Notice: Undefined index: convert in C:\xampp\htdocs\php\conversion.php on line 79 error! <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title></title> …

Member Avatar for pritaeas
0
289
Member Avatar for shielaolid

Hello there, I'm having a problem on this one. I want to update my records, but when I click save, the specific fields/record is null. instead of updating/edit. These is my PHP code for admin_view.php (This is the form where you can choose a specific record/field that you are going …

Member Avatar for pritaeas
0
176
Member Avatar for dyingatmidnight

I'm a total noob to using mod_rewrite and I'm reading tutorials and trying to wrap my head around it but it's not quite coming together. What I need to accomplish is this: take a bunch of urls structed this way: yoursite.com?index.php?id=# and rewriting it so it becomes yoursite.com/whatever depending upon …

Member Avatar for dyingatmidnight
0
158
Member Avatar for lastgame2007

can anyone take alook at my code, i dont get errors or anything but it doesnt save in my db??? please ... thanks! <?php if(isset($_POST[save])) { //student,grade,section,subject $ids=$_POST['id']; $grades=$_POST['fg']; $secs=$_POST['secs']; $subs=$_POST['subs']; $yirs=$g_year['acad_id']; debug($_POST); if(isset($_POST['save'])) { unset($_POST['save']); $i = count($_POST['id']); $x = 0; for($x=0; $x <$i;$x++){ foreach($_POST as $data =>$d){ echo …

Member Avatar for pzuurveen
0
150
Member Avatar for samidha

here is a code for HTML form [code] **<html> <head> <title>Registration Form</title> </head> <body> <form action="registration.php" method="post"> <fieldset> Name: <input type="textbox" name="fname"/><br/><br/> Last Name: <input type="textbox" name="lname"/><br/><br/> Gender:<select><option value="text">Male</option><option value="text">Female</option></select><br><br> Address: <input type="textbox" name="address"/><br/><br/> Contact: <input type="textbox" name="contact"/><br/><br/> E-mail: <input type="textbox" name="e-mail"/><br/><br/> User_Name: <input type="textbox" name="user_name"/><br/><br/> Password: <input type="password" name="password"/><br/><br/> …

Member Avatar for Avenirer
0
2K
Member Avatar for richprich

When user post a comment, i strip all the html tags in the comment before insert into my database because i do not want them to post external links(SPAM) in the comment. But i only want to strip external links, i want to display my own website URL as normal …

Member Avatar for richprich
0
351
Member Avatar for silvertooth07

Hello, I'm having a problem using the jTable plugin. I'm fairly new to using jquery. Here is my problem: I have an database name reg and has fields (fname, lname.....avatar). What i want is to show the contents of the database using jTable. Now, I don't know how to display …

0
86
Member Avatar for lastgame2007

Hi, can anyone give me a idea on how, to create a AUTO GENERATED ID, example is. SCHOOLNAME001 something like this, how may i be able to create this kind? in which the 1 will autoincrement after every new students will be enrolled...

Member Avatar for pritaeas
0
53
Member Avatar for MattD00

I have text being loaded onto the page from a MySQL database. When the text is clicked, using JavaScript the element is replaced with a textbox displaying the text. I want to be able to use a MySQL update query to change what is in the textbox and so it …

Member Avatar for broj1
0
114
Member Avatar for gopi17

okay...seem to be experiencing some problem here....in my pc, the web application is running perfectly....but when i run it from my handheld, its showing error... this is my code <?php session_start(); //starting session $host="localhost"; // Host name $username=""; // Mysql username $password=""; // Mysql password $db_name="test"; // Database name $tbl_name="test3"; …

Member Avatar for Echo89
0
199
Member Avatar for iamjin04

<html> <body> <form method="Post" action="commentsample.php"> <center><textarea name="comments" rows=2 cols=60></textarea></center> <center><input type="submit" name="submit" value="Cloud"></center> </form> <?php $con = mysql_connect("localhost","root"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("comentss", $con); if(isset($_POST['submit'])){ $comment=$_POST['comments']; $q="insert into table2 (comment) values ('$comment')"; mysql_query($q); } $q="select comment from table2"; $result=mysql_query($q); while($row=mysql_fetch_array($result)){ //this is what i …

Member Avatar for gopi17
0
177
Member Avatar for fpaquin

When I try to call the Google Calendar in PHP it gives me Fatal error: Uncaught exception 'apiServiceException' with message 'Error calling POST https://www.googleapis.com/calendar/v3/calendars/primary/events?key=ABQIAAAAsxHZhPGSukLbZlUcR7gZFhTVSiE46oDPbAIEWnLSRISr9hykzRT26WAMhnP0hQe-Tk5dj5M8wQHwFQ: (401) Invalid Credentials I looked at my developper key and it is the same. Is it suppose to be the developper key or something else?

Member Avatar for DavidAntaramian
0
94
Member Avatar for LastMitch

I'm new to this forum but I do read posts as a non-member and I learn a lot from reading other posts from other member. I'm having problem understand how to write the code correctly. I can't seen to figure out the international shipping cost but for domestic it works. …

Member Avatar for LastMitch
2
197
Member Avatar for beastpanda

Hi all, I am new to php and I have a problem that I am looking into it for 1 day and can't understand it please help. here is my html code : <html> <head> <title> Calculation Form </title> </head> <body> <form action=calculate.php method="POST"> value one: <input type="text" name"val1" size=10 …

Member Avatar for broj1
0
188
Member Avatar for joban.ali

Hi Guyz, Would like to thank you in advance for the help and support, The problem I am facing is I have a redirection script which opens the page within an iframe rather than displaying the whole page. [CODE]header("Location: http://www.domain.com/registration.php?par=$parcel&err=$error_msg&succ=$success_msg");[/CODE] I have a simple login form within an iframe when …

Member Avatar for diafol
0
878
Member Avatar for swebdizajn

Dear friends, I started a project which now needs a way to implement the other site. In fact, you should also publish the same content on the site PHP website partner. What are the odds to bring and what should I use? I tried the function (include), but this is …

Member Avatar for swebdizajn
0
354
Member Avatar for adityamadhira

Hi I am new to php. How to implement credit card payment for a site (no 3rd party tool) and how insert them in database? validations for credit card numbers and check 3 digit number of the card. Thanks

Member Avatar for phoenix_2000
0
173
Member Avatar for rajeevphp2011

any one please explain me how to use cakephp framework or any MVC base framework . i have knowledge of php and WordPress

Member Avatar for rajeevphp2011
-2
406
Member Avatar for 21122012

When user clicks on the calendar image, date can be chosen. If the text field changes, the date will be compared with $today with Javascript. If the date is earlier than today, a mesage will be shown. I did these codes and the message could not be shown when I …

Member Avatar for jkon
0
191
Member Avatar for rkayd

I am making a photo album. I have the basics set up without using any javascript but now I would like to be able to get the size of the browser window for at least two different instances. If I can get it for the thumbnail page I should be …

Member Avatar for almostbob
0
4K
Member Avatar for ak47carbon

i want to refresh images on index.php while all images selecting from database kndly help me tell me whats the solution

Member Avatar for ak47carbon
0
115
Member Avatar for newbie1234

<table> <tr><td>Date</td><td>Job_id</td><td>Active</td>/tr> <?php while ($row = mysqli_fetch_assoc($rs_total)) { ?> <tr> <td><? echo $row["Date"]; ?></td> <td> <?php echo "<a href='work.php?ID=".$row['Job_id']."'>".$row['Job_id']."</a>"; ?></td> <td><? if($row["Active"]==0) echo "Active"; else if ($row["Active"]==2) echo "Completed"; else echo "Not active"; ?></td> </tr> <?php }; ?> </table> in this code i want to transfer the id on pop …

Member Avatar for newbie1234
0
384
Member Avatar for turt2live

Simply enough: Call the function, get the returned filename. Function Variables: $file : The input file (source/background) $destination : Where you want the new watermarked image to go $overlay : The overlay image (foreground), this is default set (if not passed in) to "images/watermark.png" $X : X-Position of overlay (default …

Member Avatar for webatz
1
521
Member Avatar for momonq1990

Code blocks are created by indenting at least 4 spaces ... and can span multiple lines <script> function del(delUrl) { var r=confirm("Are you sure you want to delete?"); if (r==true) { alert("Deleted record!"); document.location = delUrl; } else { alert("Delete cancel!"); } } </script> <a href='delete.php?id=$sysid' class='view' onClick='del()'> <img src='image/vie.png' …

Member Avatar for veedeoo
0
329
Member Avatar for ak47carbon
Member Avatar for Avenirer
0
236
Member Avatar for andrecj

Hello Guys, I am looking for some help: I have a dynamic table that shows a checkbox, id, title,etc., and date of insertion of an article that I've added before. And then I have a button that I would like to control if the user have clicked the checkbox and …

Member Avatar for Avenirer
0
170
Member Avatar for RazorRamon

Ok i have this long bit of code that determines how long ago someone input a post or comment. The only bit of the code that is giving me problems is at the very beginning. When i place a fresh topic or comment it doesn't go into the " just …

Member Avatar for diafol
0
455
Member Avatar for newbie14

Dear All, I pull data from 2 different queries and both have date time data in them. So I need to present as one table but I want to order on time which is available in both queries. So how can I ensure that both data is order well on …

Member Avatar for BenzZz
0
87

The End.