39,320 Topics

Member Avatar for
Member Avatar for dmkc

Hi guys, I'm pretty much self taught, and I'm working on a site that stores mysql data using php. In the site I previously did, I used separate pages with a query relating to what I wanted to show, eg. a page called Manchester.php that displayed all records with an …

Member Avatar for Hangfire
0
119
Member Avatar for veledrom

Hi, I just start using Linux Ubuntu 8. I need a PHP development software like Dreamweaver with good features to use under Ubuntu. What do you prefer? It is to use PHP, HTML, XHTML, Javascript, CSS, XML etc. Thanks

Member Avatar for Stefano Mtangoo
0
164
Member Avatar for zalFG

[code] <?php $con=mysql_connect("localhost","root",""); if(!$con) { die('Could not connect:'.mysql_error()); } mysql_select_db("test",$con); $result = "SELECT Fieldvalue FROM jos_rsform_submission_values WHERE SubmissionId IN (SELECT FieldValue,SubmissionId FROM jos_rsform_submission_values WHERE FieldValue = '".$_POST['searchterm']."')"; print_r(mysql_fetch_array($result)); --> i dont know what to do with this part.. mysql_close($con); ?> [/code]

Member Avatar for rajabhaskar525
-1
192
Member Avatar for girishbmgowda

Hi This Is Girish I want to integrate payment gateway(Paypal) in my form (php) please do the need full for me. i am new to payment gateway so this is my first project , can any body help me out..[code]HI GIrish HEre i want know how to start the payment …

Member Avatar for rajabhaskar525
0
77
Member Avatar for Muhammad shah
Member Avatar for jjasoningram

I am trying to put a variable in as the value of the mail function on my script. I am relatively new to php and I may be making a simple mistake. Here is the script: [code=php] $busmail = $_POST['field_2'] mail(" . $busmail . ","Order Confirmation","Your Order Has Been Received …

Member Avatar for nav33n
0
140
Member Avatar for doforumda

hi i have following code. it has a problem when i submit username and password it does not display that username and password back. index.html [CODE]<!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="jquery-1.4.min.js" type="text/javascript"></script> <script> //window.onload = initAll; function initAll() …

Member Avatar for Hangfire
0
140
Member Avatar for davidjcolbran

I've made a little progress but become stuck with some PHP code. I have a small database of codes, which I need a PHP form field to check against and then direct the visitor to one of two pages depending whether what they type into that field matches a record …

Member Avatar for nav33n
0
146
Member Avatar for meepmeep

Hi, I would like to submit form data in two ways, with the one submit button. The posting methods i want to use are... To post to mysql database: [code=html]<form action="success.php" method="post" name="form" id="form" onsubmit="return validate(this)">[/code] To post to email: [code=html]<form action="http://www.mywebsite.com/cgi-bin/cgiemail/form/form.txt" method="post" onsubmit="return validate(this)"> <input type="hidden" name="success" value="http://www.mywebsite.com/form/success.html"/>[/code] How …

Member Avatar for meepmeep
0
91
Member Avatar for PinoyDev

Good day guys.! Just need a little help on how to create a php function that will loop all the rows with a text box in a table(name="gradetbl") in column 1 and save the value of the text box into mysql database when ok button is click. This is the …

Member Avatar for PinoyDev
0
130
Member Avatar for assgar

Schedule Repeat events Hi I am stuck in fact I don't know where to start, can you point me in the right direction? I have the form to capture the user input but don't know how to proceed to use this information. I need to allow the user to schedule …

Member Avatar for gearond
0
1K
Member Avatar for 4789787

This code sends a message to a user with a link. The link opens up a new window using the iframe method i want it to just open it in the same window meaning load the page onitself. Heres the code: [CODE]<?php /** * This file is under the GPL …

Member Avatar for cwarn23
0
109
Member Avatar for aryanmughal

Need help to make a little php code anyone willing to help than please reply to this post and than we will start

Member Avatar for aryanmughal
-1
98
Member Avatar for virspy

Good Morning Hello Friends, Is there any admin side opensource code r editors by which we can create Admin in PHP. means just including and modifying the fields Thank You in advance Viru

Member Avatar for JRM
0
74
Member Avatar for vanessia_1999

Can someone please tell me what I am doing wrong. I continue getting an undefined variable notice when "bar" is define in my page. Also the Previous and Next (page) is not working because bar is undefined. Previous and Next is only shown as text and nothing else Notice: Undefined …

Member Avatar for vanessia_1999
0
138
Member Avatar for whiteyoh

Hi all, Im failing to see why this record wont update...... [code] $sql = "UPDATE tbl_sellers SET propertytype = '$propertytype', propertyaddress = '$propertyaddress', propadd2 = '$propadd2', proptown = '$proptown', propstatecounty = '$propstatecounty', proppostzip = '$proppostzip', propcountry = '$propcountry', propbedrooms = '$propbedrooms', propgarage = '$propgarage', eighteenplus = '$eighteenplus' WHERE ID = …

Member Avatar for JRM
0
149
Member Avatar for chandervijay

Hi, I'm very new to web developement. I wish to develop a purchase order application wherein it has fields po_no, item, item_description, quantity, price. Out of these items po_no is common to all entries. Initially the form will have one row containing item, item_description, quantity, price. I need an option …

Member Avatar for JRM
1
699
Member Avatar for sureronald

Hi to you all. I am working on an application that accepts various source files from the users and stores them on the server with the appropriate extension e.g (.cpp, .py). This has been working fine as php allows a programmer to check the type of the uploaded file type …

Member Avatar for sureronald
0
119
Member Avatar for sakura_fujin

hi there. is there a simpler way to work with date and timestamp functions of php? i need to increment the age field in my mysql table by 1 EVERY DAY to output its current age in my web page. somebody suggested working with timestamp but how do you know …

Member Avatar for darkagn
0
99
Member Avatar for donaldw

Hi all. Here's my situation and how I'm solving it. Please let me know if my methods look good or if there is a better way of doing it. A local business around here has a drawing each day where they pick some customers' names to win something. The winners' …

Member Avatar for donaldw
0
91
Member Avatar for albertef

the below code i am used to retrieve data from table to the list. it is working. but when i am trying to insert value from this list to another table, it inserts only the first word of each list value. eg: for "On Process", it inserts only "On". can …

Member Avatar for mohamedsafiq
0
91
Member Avatar for aneeka

good day mates! is there any alternative for this code? i need to get the user input so i can count the number of records to a condition. [CODE]$result = mysql_query("SELECT * FROM exam order by rand()") or die(mysql_error()); echo "<center><font size=2 face=Arial><b>Awareness and Reminders</b></font></center><br/>"; echo "<font size=1 face=Arial><b>Type in …

Member Avatar for tomatocms
0
98
Member Avatar for LloydFarrell

Theres an error on this script, A mate of mine has asked me to look at this for him, and to try and fix it. the error message he gets is "return_msg=no_good" once he trys to login to his profile based website \ page heres the form that is used …

Member Avatar for phpuser
0
141
Member Avatar for sheru2302

Hi, I need help on updating webmails n sync servers. I'm adding user in linux server(logon server) and then i want to sync the password to 10 other IMAP servers. Later on in order to check mails I should update the webmails/ mail routers also. Can anybody help with the …

Member Avatar for sheru2302
0
64
Member Avatar for MxDev

Hi guys, How I could build a playlist linked to swf object video player to play uploaded video in php ?? Thanks,

Member Avatar for jcanaway
0
116
Member Avatar for prithvi.web

hi, I want to display the mysql records in to row and column....like [CODE]user1 user2 user3 10 20 30[/CODE] where this users are dynamic and the rows also. here is the code [CODE]$sql=mysql_query("select * from report,admin_table where report.admin_id=admin_table.admin_id and which_day='".date('Y-m-d')."' ") or die(mysql_error()); while($row=mysql_fetch_array($sql)) { $admin_name=$row['admin_name']; $activity=$row1['activity']; }[/CODE] Now it …

Member Avatar for prithvi.web
0
318
Member Avatar for bimmr

Hi all, I got this code and try to add a +1 to the .$order_details_arr[0]['Order']['id']) | <a href="<?php echo $html->url('/admin/order_products/view_details/'.$order_details_arr[0]['Order']['id']); ?>">Next</a> Basically I want to be able to show a URL that will be the .$order_details_arr[0]['Order']['id']) result + 1 so the link will link to the next order id in …

Member Avatar for bimmr
0
92
Member Avatar for Chosen13

Like if you have to run a query for one million people, how would you display the percentage of the query finished?

Member Avatar for Phaelax
0
61
Member Avatar for alumbagreenz

Hi, i am trying to create a function that will allow me to update names in a textfile i got. I am actually having problems creating the function. I wAS FOLLOWING AN EXAMPLE I FOUND IN A C++ BOOK, DOING IMPLEMENTATION, BUT GOT MIXED UP. CAN SOMEONE PLEASE HELP ME. …

Member Avatar for vaultdweller123
0
89
Member Avatar for benk1

Hi I have designed a simple login area on a website that creates a few session variables to use to query a database of products which works fine: [CODE]<?php session_start(); // dBase file include "dbConfig.php"; if (!$_POST['username'] || !$_POST['password']) { die("You need to provide a username and password.<p>Click <a href='main_login.html'>here</a> …

Member Avatar for benk1
0
108

The End.