39,316 Topics

Member Avatar for
Member Avatar for moonwine

I try to update a mysql db using php. I need to update the data in table "A" with the data from table "B" if the two table have 1 data in common. Everithing works fine when the data in common (prod='$col[0]') are only 1 word but not work when …

Member Avatar for pritaeas
-1
86
Member Avatar for nschessnerd

Hey I am using multi curl to execute cron jobs based off sql records. will the script i call run if i dont wait for the result and just close the connection? or do i need to get the result?

Member Avatar for pritaeas
0
76
Member Avatar for virtualmisc

I wanted to know which PHP IDE is the best available in market. There are lots of products available. I would prefer one with a good help guide because i am new to this.

Member Avatar for redhouse
-1
203
Member Avatar for Silverhawk

Hi, I have a major problem that I can not figure out. I have a directory that is updated once a night by fetching data from a site provider. For the last 3 days it will go fetch the data and fills the log file with the following errors over …

Member Avatar for Silverhawk
-1
206
Member Avatar for Venom Rush

Hi all I have some functionality that allows the upload of files such as MS word docs, zips etc. It works fine on my pc and another test machine but doesn't seem to work on two other machines I've tested. All machines have Windows XP installed. The first machine that …

Member Avatar for liamfriel
-1
172
Member Avatar for praveen_dusari

hi all, i want to update one field from one database to another database my query is [CODE]mysql_connect('localhost', 'root', '') ; mysql_select_db('db1'); mysql_connect('localhost', 'root', '') ; mysql_select_db('db2'); $query1=mysql_query("select * from db1.tbl_products"); while($fetch=mysql_fetch_assoc($query1)){ echo "update db2.tbl_products set p_price='".$fetch['p_price']."' where p_id='".$fetch['p_id']."'"; echo "<br>"; echo "<br>"; } [/CODE] in local it is executing …

Member Avatar for pritaeas
0
80
Member Avatar for Tigran

Hello, I'm making a browser based game in php and so far it's going really good. However I have a doubt about a script i've written. This script does alot of calculations using the data from the mysql database i'm using. So it reads and writes quite alot. And the …

Member Avatar for network18
-1
94
Member Avatar for jithusdani

Hi Folks, I have a login page and stored username and password in mysql as 'admin' and 'admin' respectivley. My problem is like if I am entering a username and paasword like ADMIN and ADMIN its get logged in I want restrict that.So please anybody have look at this..

Member Avatar for Atli
0
166
Member Avatar for hyderabadi

I am getting the following error when I tried to connect to the database. Can any one help to resolve this problem. Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'abc'@'rxsxllxr12.zzzzz.net' (using password: YES) in /home/abcd/public_html/Invoicesystem/includes/class.DBcore.php on line 62 Error in Query Execution.Error : Unable to Connect the Server216.120.228.13 MySQL Error: …

Member Avatar for cwarn23
0
131
Member Avatar for SKANK!!!!!

please help meWarning: mkdir() [function.mkdir]: File exists in..xxxxx/register.php. yeah yeah what is wrong here is my code: btw im at xxxxx/register.php [CODE]$documentroot = $_SERVER['DOCUMENT_ROOT']; if(mkdir($documentroot ."/". $username , 0777)) { $profile = $documentroot ."/". $username ."/index.php" ; $filegettingcopy = $documentroot ."/xxxxx/index.php" ; if (copy($filegettingcopy, $profile)) {echo "<br> You can access …

Member Avatar for SKANK!!!!!
0
3K
Member Avatar for shastry

I want to encrypt php code so that others should not modify. If i run that encrypted php file in the browser its functionality should work. I have used few softwares, with those i could encrypt php code but failed to run in the browser as php encrypted code is …

Member Avatar for edwinhermann
-1
153
Member Avatar for iThaos

Hello, Is there a way to create functions dynamically in PHP as such: [code=php] <?php $my_arr_conf = array( 'my_var' => 'This is my variable', 'your_var' => 'This is your variable' ); // Some code here where I can create the function // Maybe somehow with create_function(); ? // I was …

Member Avatar for iThaos
0
1K
Member Avatar for itsrahulk

Hi folks !! I got a project for developing the clone of the website [url]www.worldnews.com[/url] please help me in to getting start this as i have to develope it from scratch there is no help document available from the client side.from where should i need fetch the data or i …

Member Avatar for digital-ether
-1
92
Member Avatar for studioceasar

Hi All, I've been struggling with a number of different snippets of code to get the following script to force download. Everything I try won't connect. Unfortunately, because I'm such a novice, I can't find where the problem lies. Could anyone help me 'plug in" the right code to make …

Member Avatar for digital-ether
-1
140
Member Avatar for CFROG

I'm trying to make a list of friends that are NOT in address book. This returns all friends : [code] // Check for friends $frnd="SELECT * FROM friends WHERE my_id='$_SESSION[user_id]'"; $fres = mysql_query($frnd); $fnum = mysql_num_rows($fres); while($fr=mysql_fetch_array($fres)){ $friend = $fr['friend_name']; $friend_id = $fr['friend_id']; } [/code] This returns all friends that …

Member Avatar for CFROG
0
121
Member Avatar for mark2326l

This is my first project using JavaScript. I have a PHP page that loads text fields "if" called for. I thought JavaScript would be a great way to get the total of all Text Fields without Submit. The code below is an example of my problem. [CODE]<SCRIPT language = JavaScript> …

Member Avatar for mark2326l
-1
74
Member Avatar for unlimited2442

Hi, I'm new here, looking for some assistance... I am starting a new xbox clan, and I'm buillding the website for it. Normally I build my own websites and code them, but I wanted to go a bit more advanced than I usually do, and learn a little bit more. …

Member Avatar for Atli
0
85
Member Avatar for Xamas

I had a code, which was working OK. [CODE="PHP"]echo "<form name='pm_form' method='post' action='?inbox'>\n"; echo "<input type='submit' name='save_msg' value='Save' class='button' />\n"; echo "</form>\n"; [/CODE] Poor quality button, I changes to a well looking image: [CODE="PHP"]echo "<form name='pm_form' method='post' action='?inbox'>\n"; echo "<input type='image' src='button_save.png' value='Save' name='save_msg'/>"; echo "</form>\n";[/CODE] But the problem is, …

Member Avatar for Atli
-1
136
Member Avatar for emhmk1

Good Evening everyone. I work for a marquee firm and i am creating a php mysql components list for the assistance for loading equipment. SO far, the user can input a marquee size (eg: 6mx3m) in a form and we search the database and output the items required for said …

Member Avatar for diafol
1
142
Member Avatar for loudstil

hello to all, I wrote a foreach() loop and inside I added a variable which also increase but not as with the array that run in the foreach(), but somehow the for each also increases my variable: [CODE] $n = 0; while($row = mysql_fetch_row($GetItems)){ echo "$n<tr>"; foreach($row as $cell){ if(strstr($cell,"Images")){ …

Member Avatar for loudstil
-1
85
Member Avatar for gaz

hi i am following this etutorial and the code is not working and dont get why. There are two bits of code: [CODE] > <body> <? $sonnet76 = <<<HERE Sonnet # 76, William Shakespeare Why is my verse so barren of new bride, And keep invention in a noted weed, …

Member Avatar for gaz
-1
91
Member Avatar for just_me

hi guys. I got problem here. I built the system of weighted average method calculation based on php. Now, I'm the last part which sum of the value in html table. Basically, this is my coding:- [CODE] <?php session_start(); $con = mysql_connect("localhost","root",""); if (!$con) { die('Could not connect: ' . …

Member Avatar for CFROG
-1
414
Member Avatar for Stefano Mtangoo

Hi all, When you add integer ID primary key auto increment, it automatically makes ID for you. But I was pondering on what happens after deleting a record. Does the server automatically adjust all IDs for you or it remains un assigned? For example, I have inserted as follows +------------+-------------+ …

Member Avatar for Stefano Mtangoo
-1
141
Member Avatar for guruvarman

hi, I've coded like this for login Database. Its well working in my local host in offline.But not working Online in Plesk PHPMYADMIN MYSQL Database with same database name, username, password as below. and host name as mentioned in PHP server.. (provided db name, username & password are correct) [CODE]<?php …

Member Avatar for =OTS=G-Man
-1
79
Member Avatar for CFROG

This seemed like a good idea to me but it's not working out the way that I want ... I'm probably over-complicating it 8-) I'm trying to allow users to search for other users in their area and part of the search criteria gives you 8 different options to choose …

Member Avatar for fwdean
-1
176
Member Avatar for nadnakinam

hi, i'm using php 5.3. version for my site development. If i use this function "session_is_registred()", i' getting message something like warning(not actual warning message) as following "Function session_is_registered() is deprecated in c:/.../.php" how can i erodicate this message? help to accomplish it... Thnx...

Member Avatar for fwdean
-1
88
Member Avatar for ENetArch

All, Does anyone know if there is a package available to allow PHP programmers to store their PHP Objects / Instances into mySQL, and still allow them to be searchable? ie .. not serialized? Looking forward to your responses, E,

Member Avatar for somedude3488
-1
95
Member Avatar for valonesal

I would like to make it so that no matter what the client enters it will match words in the database. Example: they type [url]http://awebsite.com[/url] but only awebsite.com exists it still matches it and any combination such as they search awebsite.com and [url]http://awebsite.com[/url] is in the database it matches. Here …

Member Avatar for fwdean
-1
132
Member Avatar for tarunkhatri

Hello, I have a php page with a form(grid) which is submitting values to the database. [CODE]<form action="<?php echo $_SERVER['PHP_SELF']?>" method="POST"> [/CODE] As soon as i press submit, data is updated in the database but I still see previous values in the form(grid), and manually need to refresh it for …

Member Avatar for tarunkhatri
-1
107
Member Avatar for IfNot

Hi, I've got a problem that is freaking me out. (it's really wierd 'cause IE & FF are both behaving the way I expected but Chrome wont. I have a problem trying to get equal row heights in a table where the last 2 columns are rowspans (4). I've got …

Member Avatar for IfNot
-1
67

The End.