39,316 Topics

Member Avatar for
Member Avatar for baseballfury

Hi Guys, Not sure if this is a php or sql problem but i keep getting the following error when trying to update a row using php and 'UPDATE': ERROR:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right …

Member Avatar for baseballfury
0
140
Member Avatar for juanitobunito

i created a database (Questionnaires) i also create two tables (Questions and Answers) i successfully display the questions randomly but my problem is i cannot connect the answers according to its primary ID here is my code [CODE]mysql_select_db("questionaires", $con); $result = mysql_query("Select * from Answers where AnswerID = {$row['QuestionID']} order …

Member Avatar for diafol
-1
85
Member Avatar for i love my vans

Hey Everyone! ( <-- First Post, Wow) Well i want use a URL variable like this... [PHP]www.site.co.uk/index.php?page="about"[/PHP] With me so far? Ok. Now when the user enters the index.php page, i want specific content loaded into a preset table, in the case above it would be the about page, but …

Member Avatar for rekhasuresh
0
733
Member Avatar for duliduli556

String concatenation is the string manipulation method when you join 2 or more strings together. In PHP it is a quite easy task. You can use the concatenation operator which is the ‘.’ (dot). You can join 2 or more strings into one as follows: $str1 = ‘This’; $str2 = …

Member Avatar for R0bb0b
-2
146
Member Avatar for dalip_007

hey guys I have a string containing email addresses like "ceo@facekut.com" <ceo@facekut.com>,"Rahul Mahajan" <creative.rahul007@gmail.com>......... Now is there a way in php to remove all the things between quotes "..." and make this look like below? <ceo@facekut.com>,<creative.rahul007@gmail.com>......... or [email]ceo@facekut.com[/email] ,creative.rahul007@gmail.com......... I would be very thankful if anyone has answer. Thanks

Member Avatar for dalip_007
0
165
Member Avatar for youvi

please clear the syntax error... [CODE] $locker_query ="update tbl_locker set locker_title='".$locker_title."',headline_text='".$locker_headline."',introductory_text='".$locker_intro_text."',popup_delay='". $locker_delay ."',repopup_frequency='".$locker_frequency."',forced_completion='".$locker_force_offer."',email_id='".$locker_email."',created_date=now(),guid='" . md5(time()). "' where locker_id='".20."'"; [/CODE] Thanks

Member Avatar for diafol
0
84
Member Avatar for duliduli556

Hi All, How do you use div class' in php such that you can attach html generated by php into that div class. Example <html> <head> </head> <body> <div class="border"> </div> <?php echo "This needs to go into the class border" ?> </body> </html>

Member Avatar for diafol
0
113
Member Avatar for thijscream

[B]SOLVED ALREADY!!![/B] i'm getting the following error: UPDATE orders SET naamwijn = Josep Masasch Blanc de Blancs Brut Cava WHERE ordernr = 22 AND productnr = 16 LIMIT 1You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax …

Member Avatar for thijscream
0
80
Member Avatar for ediddy02

I Downloaded Wamp server 2.0 for my php and mysql installation. When i click on the wamp server through start/programs/wampserver/startwampserver2.0 it just has an icon 'start wamp server 2.0',is it the right file i downloaded?isnt it supposed to contain other clickable icons like phpmyadmin,mysql,apache ?? Secondly,do i need to download …

Member Avatar for chrishea
0
632
Member Avatar for enzogoy

Hi all I'm a newie to PHP. I have a html form which will passed 6 value to a php file and from a php file, I would like to write these value on to 2 rows in the excel. Therefore each person submit the form, it will write 6 …

Member Avatar for mafhh14
0
5K
Member Avatar for LloydFarrell

Hi all - How can i echo back the value of of the following - If the form has other errors - ie. if a user has missed filling in a field - I can echo other fields if there are errors Im just having some difficulties in echo-ing out …

Member Avatar for vibhaJ
0
199
Member Avatar for Tempest will

below is my code to use chekc boxes to update my status field to either a 1 or 2, but altohught it doesnt show any errors, it wont update HELP PLZ </style> </head> <body> <table width="744" height="536" border="1"> <tr> <td height="63" colspan="4" bgcolor="#8BCB6A"><p><img src="CO-OP title.gif" width="407" height="64" /> <?php $connection=mysql_connect('localhost','but09081489',''); …

Member Avatar for Tempest will
0
113
Member Avatar for disposable_zero

I'm relatively new to all this so go slow. But what I'm trying to do is have a button where the user can click it and download a file from my site to their computer. I don't know if you need a script to do this or if their is …

Member Avatar for diafol
0
59
Member Avatar for vilasdhobale

Hello all, I am working on penny auction site,so i need count down timer script for getting current update such as remaining time current bidder, and current price of auction, I have already implement javascript and its calling php script for getting latest update. Also it is working but count …

Member Avatar for diafol
0
78
Member Avatar for zeusthegreat

[CODE]<?PHP // Original PHP code by Chirp Internet: [url]www.chirp.com.au[/url] // Please acknowledge use of this code by including this header. function getImages($dir) { global $imagetypes; // array to hold return value What does retval mean? $retval = array(); // add trailing slash if missing if(substr($dir, -1) != "/") $dir .= …

Member Avatar for diafol
0
141
Member Avatar for ditty

Hi I am using the following code to convert html to pdf. But the resulting pdf page shows blank. Please help me...its very urgent.. [CODE]require('pdf/html2fpdf.php'); $str =stripslashes('<div style="width:580px;" align="left">'.$pdfmessage."</div>"); $html=str_replace("&nbsp;","",$str); $pdf=new HTML2FPDF(); $pdf->AddPage(); $pdf->SetLeftMargin(25); $pdf->SetFontSize(12); $pdf->WriteHTML($html); $pdf->Output($invno.'.pdf','F');[/CODE]

Member Avatar for holy-food
0
157
Member Avatar for xxreenaxx1

I am doing an equation and the outcome is 45.454545454545454545. I would like to get rid of the 45454545 after the decimal point. and have 45% [CODE] $final=5/11*100; [/CODE]

Member Avatar for BrianDickson
0
103
Member Avatar for thijscream

hey ppl, you helped me out allot of times, so i come back to you once again, i just transfered my website from a local pc(for testing) to a webserver @ my hosting. now some parts arent working correctly. [B]some extra info about the page:[/B] What kind of web page …

Member Avatar for thijscream
0
180
Member Avatar for xxreenaxx1

I am able to upload a file and echo these. But now I would like to upload these to my database. How would I go onto doing this. I found something like this for C++. but not sure how to convert this to PHP. this is what I found [CODE] …

Member Avatar for xxreenaxx1
0
181
Member Avatar for mbarandao

Good day: Need some assistance with an idea which seem to be complicated as I think of it and can't seem to figure out an appropriate implementation. I'm working on a hosted service app which requires a php logging system to identify the user and their respective account. On this …

Member Avatar for mbarandao
0
107
Member Avatar for jacob21

Hi, query showing error [CODE] "SELECT * FROM admin INNER join category on category.cat_id=admin.cat_id where admin.company=".$_REQUEST['company'].""; [/CODE] thanks

Member Avatar for kekkaishi
0
73
Member Avatar for hotice47

HI i am try to delete multiple data by using check-box in php i tried but is don't works not getting the ids from the check-box.. my code is [CODE] <tbody> <?php while ($row = mysql_fetch_array($res)) { ?> <tr class=" <?php echo $class = ($class == 'even') ? 'odd' : …

Member Avatar for coolest_987
0
148
Member Avatar for anooptech

I am a beginner to PHP, I have a table dyn_menu to store menu items in the database. The parent_id is the id of the parent menu item. I need to generate an array like, array[ -1 --3 -2 --4 ---6 -5 ] The table shown below.Please help me to …

Member Avatar for vibhaJ
0
142
Member Avatar for mdminternet

Hi guys, I'm currently building a Wordpress site and I have a very minimal knowledge of PHP. I'm wondering if anybody can tell me or knows of code which I can insert into my template to make the top 30 posts appear but in 3 columns rather than just straight …

0
64
Member Avatar for justin_petrulis

Hello, i have centos server with installed webmin, php, apache, mysql. I have configured php without soap and now i need to install php-soap-5.3.4-1.el5.remi. I have searched all over the internet but not found that rpm. I would be very grateful if you could give me a link if you …

Member Avatar for justin_petrulis
0
267
Member Avatar for nitnayak

can any one help me with this code, I am using this code for display No.of days in given date date format is 25/04/2011 [CODE]function month() { var date = document.getElementById('datetxt').value; var curr_month = parseFloat(date.substring(3,5)); var curr_year = parseFloat(date.substring(6,10)); var day = cal_days_in_month(CAL_GREGORIAN, Number(curr_month),Number(curr_year)); document.getElementById('nodaytxt').value= day ; }[/CODE] Its not …

Member Avatar for youvi
-1
50
Member Avatar for emhmk1

Hi Everyone. I'm having a hard time getting my head around the concept of this and kind of need it spelling out for me. as things stand the user uploads a video and then my script converts it without the user being able to do anything, however this, i know, …

Member Avatar for emhmk1
0
170
Member Avatar for P00dle

g'mornin peeps. I'm going for an interview tomorrow at a company that uses the ZEND framework. As such, I have been reading up on it, as well as MVC among other things. The question I'm asking is about the ZEND controller action. Could someone please point me to an example …

Member Avatar for P00dle
0
193
Member Avatar for floatingDivs

Hey guys, I'm interested in PHP and was wanting to get better. I figure there is at least a handful of active members who are college students and wouldn't mind learning more PHP. My offer is to create our own, unique, open-sourced educational CMS similar to Blackboard or Angel. It …

Member Avatar for jogesh_p
0
151
Member Avatar for Bazzaah

Hi I'm building a site that contains access to some mp3 files of people speaking English. I would like a media player that is able to handle a variable that results from a database search. I can use <a href etc> to link to the relevant file but would like …

Member Avatar for Bazzaah
0
105

The End.