38,023 Topics

Member Avatar for
Member Avatar for dmtp

Hiya :) After a couple of years I have decided to start programming again and trying to catch up with php5. I have come across a bit of coding that I don't quite understand and would like if someone can tell me exactly what is going on here. :) This …

Member Avatar for dmtp
0
110
Member Avatar for turpentyne

Bear with me, I'm not the best at PHP, and I have to take over a project somebody else abandoned. They built a form where people choose one or more classes, and how many people they're enrolling. Once the user picks a class and the number of enrollees, they press …

Member Avatar for turpentyne
0
118
Member Avatar for super-duper

Hey guys, I was just installing the PHP on my laptop. And, on one of the windows, it is asking me if I want the wizard to setup a web server. Do I need one? There is a list: IIS FastCGI, Other CGI, or Do not setup a Web Server. …

Member Avatar for diafol
0
287
Member Avatar for magicmarkuk

Hi Apologies if this is not the correct forum for this question. I am running xampp. I have 100+ image files in a directory that I wish to rename. The old filename and the new filename are stored in an mysql database I want to write a routine that will …

Member Avatar for magicmarkuk
0
202
Member Avatar for sujan.dasmahapa

I want to display a set of buttons when a button is pressed on the page. whats wrong in this code. it's giving errors [code] <?php if(isset($_POST['submit'])) { <form method="post" action=""> <input type="submit" name="submit1" value="Style1"> </form> <form method="post" action=""> <input type="submit" name="submit2" value="Style2"> </form> <form method="post" action=""> <input type="submit" name="submit3" …

Member Avatar for veedeoo
0
164
Member Avatar for petrovitch

Is it possible to run command line exec in the foreground instead of the background with PHP?

Member Avatar for edwinhermann
0
156
Member Avatar for danielbala

Hi Im using datagrid in javascript to display a table in a page.(php) And im using the check box field in the table..when i select the check box the value is posted in the DB table but the current employee name field in a form is not posted to the …

0
62
Member Avatar for joyagopian90

Hi I am a senior in business computing and I have a project to hand to my university in order to graduate and I have chosen a student registration system but in order to accomplish that I obviously need a well designed and organized database. here are the tables I …

Member Avatar for joyagopian90
0
2K
Member Avatar for kings

[CODE]<html> <head></head> <body> <?php print "<script type='text/javascript'>"; print "window.open='http://www.examples.com/page.html','new_window1','status=1,scrollbars=1,resizable=0,menu=no,width=320,height=220'"; print "</script>"; ?> </body> </html>[/CODE] Not able to open popup.Is this correct code.

Member Avatar for dremes
0
179
Member Avatar for foysal2012

Dear, I want to select 3 option for search,there are only 2 term [CODE]$term = $_POST['searchterm']; $term = $_POST['searchterm']; $term = $_POST['searchterm']; $sql = mysql_query("SELECT * FROM entry WHERE wre LIKE '%".$_POST['searchterm']."%' && searchterm LIKE '%".$_POST['searchterm']."%' && searchterm LIKE '%".$_POST['searchterm']."%'"); [/CODE] Please help me [QUOTE=Ragnarok;35163]The SQL would look something like …

Member Avatar for foysal2012
0
139
Member Avatar for NinjaMediaD

I know that in a dev cycle the warnings are there to help you figure out what is wrong with your code, What I am wondering is what types of warnings should you just disregard? Are there any? are there warnings that are caused due to degradation of a command …

Member Avatar for NinjaMediaD
0
126
Member Avatar for sujan.dasmahapa

I am having one button1, when click on it another button2 comes. when click on button2 i am showing an image on the right side. But the button2 is disappearing. I want all the buttons to be present in the page. Please help whats going wrong in this. [code] <form …

Member Avatar for diafol
0
108
Member Avatar for sidra 100

m geting an unexpected error in my code plz tel me where am i wrng my code because i have wriiten mysql_num_rows many time [CODE]<?php session_start(); print_r($_POST); $con=mysql_connect("localhost","root",""); mysql_select_db("pras2",$con); $slip_no=$_POST['slip_id']; $query="SELECT * FROM `slip` WHERE slip_id='$slip_no'"; $result=mysql_query($query); if ($result) { $query1= "UPDATE `slip` SET status='accepted' WHERE slip_id='$slip_no'"; $result1= mysql_query($query1); if($result1) …

Member Avatar for cossay
0
86
Member Avatar for Golffor1

Hello I have the following code [code] $emailPlayers = mysql_query("SELECT players.player_email, players.Player_First_Name, players_paid.`paid_thru` FROM players_paid INNER JOIN players ON players_paid.Player_number = players.Player_number where players.Player_number like '$aDoor'", $link) or die (mysql_query()); //grab the e-mail addresses while ($row = mysql_fetch_array($emailPlayers)) { echo $row['Player_First_Name']; echo "<br>"; echo $row['players_paid.paid_thru']; echo "<br>"; echo $row['player_email']; echo …

Member Avatar for pritaeas
0
87
Member Avatar for rajeesh_rsn

Hi friends , I made a site in php including login system ... It is a movie discussion portal including movie details and all.. My question is can we integrate facebook login to my site ? So that peoples can comment on this site through their facebook .. For Weg …

Member Avatar for carie_wilson
0
647
Member Avatar for webblar

Hi all, Andy here and a newbie to this *great* site and first post so here it goes... Pretty new to PHP, been coding for about half a year now and loving it. To help get a better skill set and knowledge of the language I've decided to build a …

Member Avatar for webblar
0
198
Member Avatar for cjohnweb

So I am trying something new in a script and I can't seam to find more information on it. I've seen it and I've used it, but what do you call it? How would you search for it? [code=php] <?php $var = <<<UPPERCASELETTERS "Some Content in which I don't have …

Member Avatar for cjohnweb
0
120
Member Avatar for Clanstrom

Ok, Assume i am creating a site for people who own business companies and when they submit their names, phones, and other details, i want a php code to generate a URL of their Company Name only. Now, here is the trick, i don't want just any URL, i want …

Member Avatar for diafol
0
121
Member Avatar for Danny159

Hey guys, I am in the process of making a website that will take file uploads for different things... 1. Add Photos to a project 2. Add Profile photos 3. Add Gallery photos But I was to use the same uploader for each section of the site but im not …

Member Avatar for diafol
0
78
Member Avatar for mikeshadow

So i've come over a problem, i need to use something similar like this [CODE] set @num = 0; select * from ( select * , @num := @num + 1 as row_number from my_users as info order by Score desc ) as ii [/CODE] any ideas how i can …

Member Avatar for diafol
0
58
Member Avatar for Clanstrom

Ok, i am so new to PHP and today, i wanted to create a very simple php code that submits username and country name into myqsl. So, I created databse and tables in phpMyAddmin, and i created two php files ( c below ) i.e. form.php & insert.php [B]This is …

Member Avatar for Clanstrom
0
229
Member Avatar for patrick1981

I have a blog with a domain that I moved to a new host and now it doesn't have SSL certificate installed on it. There are certain links to that domain that where bookmarked using https and now that SSL is not installed on the new server users who access …

Member Avatar for patrick1981
0
220
Member Avatar for strongpot

I work for a company that does online coupons. We'd like to restrict the printing of coupons to only those people who have not printed them before. I'm doing this by inserting couponid numbers and ip addresses to a Print Tracking table. My plan is upon using the print button, …

Member Avatar for strongpot
0
184
Member Avatar for vienem

Hi there, I am relatively new to PHP and MySQL coding and I am currently using the Joomla CMS. What I am trying to do is get a game name based on a custom field value from my DB like so; [CODE] // fetch the value of field called Game …

Member Avatar for vienem
0
178
Member Avatar for geekman89

Hello everyone, here is what I'm trying to do: I want to create a multidimensional array of this form: [CODE]Array([0] => a, [1] => Array([0] => Array([0] => d, [1] => e)), [1] => c, [2] => d))[/CODE] Where for every element in the array, another element or array is …

Member Avatar for diafol
0
115
Member Avatar for sujan.dasmahapa

i am creating a button on the page and pressing button loads an image. when the image loaded button is moving down and the image occupies the top-left portion. How can i position the image on the right hand side, so that my buttons dont move and the images comes …

Member Avatar for sujan.dasmahapa
0
177
Member Avatar for Awilson089

Not sure if this should be in the MySQL section but here goes, I basically need some sort of code which can read events from a database, display them on a webpage, and the ability to edit and add new events. Please do not suggest any sort of calendar as …

Member Avatar for Awilson089
0
176
Member Avatar for filipgothic

How can I show data from table which have for example certain place, I need to make like dropdown menu with places and when I choice one I need statistic from that one, I have already made base here is page [url]www.anketa.comli.com[/url] At the end of page is dropdown that …

Member Avatar for filipgothic
0
307
Member Avatar for demon8

Hey all. Ok this is so basic but confused. I'm updating the student name in this instance. I'm able to extract the name out of the database, but I cannot update. Any hints as to where i'm going wrong? [CODE] <?php $dbhost = 'localhost'; $dbuser = 'nbsstud1_test1'; $dbpass = 'demon8'; …

Member Avatar for demon8
0
88
Member Avatar for fire eaters

<select name="criteria" class="report_listbox"> <option value="">Status</option> <option value="PASS">PASS</option> <option value="FAIL">FAIL</option> <option value="ALL">ALL</option> </select> ------------------------------------------------------------------------------------ $date = $_POST['date']; $criteria = $_POST['criteria']; $sql=" SELECT frsemployees.`name`, bft.`date`,bft.`dpush`,bft.`push`, bft.`dsit`,bft.`sit`,bft.`drun`,bft.`run`,bft.`status` FROM `bft` INNER JOIN frsemployees ON frsemployees .empid = bft.empid WHERE bft.`date`= '".$date."' AND bft.`status` = '".$criteria."' "; -------------------------------------------------------------------------------------- the bft database table `status` row containes …

Member Avatar for karthik_ppts
0
117

The End.