39,321 Topics

Member Avatar for
Member Avatar for Scribbller
Member Avatar for jon92

hello, ive recently created a login in and register page for a website im working on and when using the register.php page to sign up, then entering the details into the login.php page all the login page seems to be doing is refreshing and removing the entered information and not …

Member Avatar for jon92
0
208
Member Avatar for drewpark88

Hey guys, I have a quick question. I normally only do Front-End but I have just started working more with PHP. So I have a question regarding conditionals. Here is my code: //I actually get this from when a user posts, this is for demo $videoURL = "http://www.youtube.com/watch?v=-XjwL9kCmgc"; $parsedURL = …

Member Avatar for drewpark88
0
101
Member Avatar for kony

Iam a newer in php Programming . How can I Improve myself in here. I colud not get a complete project. just Give me a project because I wanna learn basic something in php. i know basic programming but i could not complete any project . Give me a project …

Member Avatar for diafol
0
149
Member Avatar for hanan-kh

hi..The problem is that the data is not saved in the database Knowing he was not shown to me any errors in the code, but does not store data in the database <? class myclass{ function __construct(){ $conn=mysql_connect("localhost","root","1"); mysql_select_db("society",$conn); } function validlogin($t1,$t2) { $res = mysql_query("select * from admin where …

Member Avatar for hanan-kh
0
283
Member Avatar for varunsara

I fetch some data from the remote server and feed it into my site database .It having 9 lakhs of records(app) but the insertion of records stopped 60,180 records only.we use mailto function and exception handler to find the bugs but no response.Anyone please advice me whether the cron get …

Member Avatar for pritaeas
0
422
Member Avatar for Rahul47

Don't know what's wrong with this code ?? Can anyone figure it out ?? <?php header('Content-Disposition: attachment; filename="'.$_GET['file'].'"'); header('Content-type: application/pdf'); readfile($_GET['file']); ?> Thanks !!

Member Avatar for pritaeas
0
42
Member Avatar for dinhunzvi

i have the following php files. <?php require_once '../moonlight/includes/mysql_connect.php'; require_once '../moonlight/includes/functions.php'; require_once 'includes/reader.php'; /** * @author FreeUser * @copyright 2013 */ if ( isset( $_POST['submitted'] ) ) { $errors = array(); if ( $_POST['authorityID'] == "" ) { $errors[] = 'Select the paying authority.'; } else { $authorityID = (int)$_POST['authorityID']; …

Member Avatar for dinhunzvi
0
193
Member Avatar for kingk110

I am using the google search engine. I can add autocomplete terms and upload an xml file with the autocompletetion terms within the site itself. I am trying to auto upload this xml file by a console application or a php file.Is there a way that I can auto-upload this …

Member Avatar for LastMitch
0
293
Member Avatar for m.tompkinsnz

Hi Guys, I'm currently embarking on a project relating to inventory management within my business, and have done a concept in Visual Basic. I'm now going through the motions of deciding which angle to take in regards to mobile access of the application. I have thought about whether to write …

Member Avatar for LastMitch
0
172
Member Avatar for RascelleGrepo

Hi. I am working on my Online Examination project in my web development subject but I am having a hard time to code how to go back to my previous page where I put session on it. my online exam are categorize by subject then inside the subject there is …

Member Avatar for kindo
0
398
Member Avatar for rexmatthew

Please help. I already had my booking calendar added to my site last week and the calendar showed up but now only the booking form is showing up but the calendar does not seem to show. I've tried a lot of fixes and nothing seems to work. Please help. ------------------------------------------------------------ …

Member Avatar for rexmatthew
0
363
Member Avatar for asifalizaman

hi!guys Today i want to learn from you.. where to start PHP and what tool is the best for me .i am a beginer and i want to expert in PHP so what you suggest me Thanks for reading

Member Avatar for diafol
2
290
Member Avatar for davidjennings

Hi All - I am trying to correctly valididate forms on serverside using PHP and on client side with JavaScript I seem to have got lost in the processes here. Thanks DJ <?php // define variables and initialize with empty values $fname = ""; $fnameErr =""; $lname = ""; $lnameErr …

Member Avatar for rotten69
0
304
Member Avatar for akuteru

Hello, i wanna ask you guys if there is anyway i can get the value of a dropdown and pass it to another php file without using the <input type="submit> way? The way is i have the options in my menu coming from the database This is my code on …

Member Avatar for broj1
0
207
Member Avatar for engrjd91

I'm a beginner in php.. can any one explain cookies & sessions in an easy way for me? i have surfed different sites for it also i have taken many trainings but yet i m not that much clear about these two concepts... kindly help me out !

Member Avatar for engrjd91
0
99
Member Avatar for cwarn23

In php/html/javascript there are two different ways you may redirect a user to another page however there are a few things to consider before choosing with method to use. As you should know by now php has the ability to send html and javascript to the web browser and php …

Member Avatar for coreyavis
4
2K
Member Avatar for Froger93

Hey guys, I just wanted to let everyone know that functions can be used very constructively and there are more to them then most think. Okay this example function is actually pulled from a class of mine so it would probably make more sense in my class but it should …

Member Avatar for coreyavis
7
925
Member Avatar for robinkang

want the value cookie that i got from the following code further used in php script to visit next url because value of cookie used in url ....how i can save value of cookie and again use it in my php script suppose cookie is JSESSIONID GT1~A555400D38C7F737D383DEEBA8A30CE3.GT.1 and my next …

Member Avatar for robinkang
0
258
Member Avatar for hwoarang69

trying to buld gllery.php page. where i want to print all user image with 4 cols. and infity rows. all in one page gallery.php <?php session_start(); include("connect.php"); $user = $_SESSION['username']; if($user) { $user_id = $_SESSION['user_id']; //get user_id who ever is loged in $image = mysql_query("SELECT * FROM image WHERE user_id …

Member Avatar for suresh.godavarthi.77
0
2K
Member Avatar for OsaMasw

I don't know whats wrong but my code not working properly here is my html code <input type="text" name="username" id="username"> <div id="check_usr"></div> AJAX call <script> $(document).ready(function() { //user name $('#username').on("keypress", function(e) { startTypingTimer($(e.target)); }); }); var typingTimeout; function startTypingTimer(input_field) { if (typingTimeout != undefined) clearTimeout(typingTimeout); typingTimeout = setTimeout( function() { …

Member Avatar for OsaMasw
0
387
Member Avatar for aisha.edris1

i have problem my login it's not running plzzz help me <?php session_start(); require("dbc.php"); if(isset($_POST['submit'])) { $username =mysql_real_escape_string( $_POST['username']); $password =mysql_real_escape_string($_POST['password']); if ($username && $password) { $connect=mysql_connect("127.0.0.1","root","") or die("couldnt connect to database"); mysql_select_db("login") or die("couldnt find database"); $query = mysql_query("SELECT * FROM `users` WHERE `username` ='$username'"); $numrows = mysql_num_rows($qurey); if($numrows …

Member Avatar for aisha.edris1
0
200
Member Avatar for Dani

I currently have SVN down pat in Zend Studio. However, I can't figure out how to upload the changed files?

Member Avatar for Dani
1
250
Member Avatar for Wailintun

HI everyone, I have a problem with post I want to do this in multi step and echo all data that I selected from drop down. here my one page full code, then multi step page code. full code <?php include('config.php'); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> …

Member Avatar for Wailintun
0
188
Member Avatar for hanan-kh

hi Ineed your help to solve this problem... I have a special folder in my manager and control panel, but when I need to get back to the main page without logging out of the director but was not able to even though I try this code but also does …

Member Avatar for hanan-kh
0
122
Member Avatar for guilherme.carvalho.9250

Hello to everyone, im having trouble getting the value of a combobox in HTML to php! Frist I import data from a mysql collum into the combobox, being this the value of the combobox! I want to be able to get the selected value when I submit my form. I …

Member Avatar for broj1
0
9K
Member Avatar for Shodow

how to execute two queries if isset like this but this code wont work if (isset($_POST['Add'])){ $tror=$_POST['tror']; $name=$_POST['name']; $product=$_POST['product']; $price=$_POST['price']; $deliver=$_POST['deliver']; $return=$_POST['return']; $custody=$_POST['custody']; $cash=$_POST['cash']; $charge=$_POST['charge']; $date=$_POST['date']; mysql_query("insert into delivery (TrOr,Customers_Name,Product,Price,Deliver,xReturn,Custody,Cash,Charge,Date) values('$tror','$name','$product','$price','$deliver','$return','$custody','$cash','$charge','$date') ; UPDATE inventory set Quantity='$_POST[cquantity]' WHERE Product='$_POST[product]'"); }

Member Avatar for cereal
0
143
Member Avatar for Shodow

how to trim a text and get the data after the colon(:) and eliminate space example: 5 Gallon Qty: 10 adn then on dropbox selected the the value of quantity textbox will be the trim part **10**

Member Avatar for urtrivedi
0
118
Member Avatar for vizz

How to null and/or alter the value of **referring URL?** I'm using **Google Analytics** and other some **Analytics** services. I found they are tracking **Referral URL.** So I want to hide **Referral URL** from **Traffic Analysis Tools** (e.g.:- modify **$_SERVER["HTTP_REFERER"];** value to facebook.com on localhost) **index.php** <a href="get_referer.php"> Click Here</a> …

Member Avatar for vizz
0
2K
Member Avatar for showman13

OK, I'm lost... don't know if this is easy and I'm missing it, or it can't be done, but this is my favorite place to ask... I have a table data cell that I would like to have as the submit value (link) in a form in a php script. …

Member Avatar for showman13
0
197

The End.