39,402 Topics
![]() | |
I am making a website to show Londoners where the nearest toilet to them is. I am having problems getting the data into the google maps application. It was working yesterday and now it isn't. Im confused to say the least any help would be much appreciated. [code=php] var markers … | |
I am not programmer.I am designer. I want to make website.Where i can update text and image from admin panel. Is there any script or any software avaliable.which i can use to update website.I have attached the image.how i want to do. Thanks a lot | |
i have a function lets say function myfunc() { echo 'hi'; } now the code may call the function [B]myfunc[/B] more than a time but there should be only one time echo of 'hi' pliz help anything could work .... but all my effort in vain static variable ???? global … | |
Is it possible to pass the javascript varible from one php page to another php page. what is the syntax we use. | |
Hey all, first post here and im also very new to PHP, but been having major headaches over one query. The query simply inserts some data into a table, which i've done in myphpadmin, the myphpadmin looks like this: Registration_ID int(10) No auto_increment Registration_Date date No Academic_Year int(2) No Year_of_Study … | |
Anyone can help me to tell me what the best accounting,payroll,inventory,andPOS open source software web based with php-mysql ? Thanks 4ll | |
Hi all, I would like to know how to assign and get the form value when I using it in a [COLOR="Red"]loop[/COLOR]. I cannot get all the input that I inserted in '[COLOR="red"]Desc[/COLOR]' part and it is from[URL="http://www.dynamicdrive.com/dynamicindex16/richtexteditor/index.htm"] [COLOR="red"]this site[/COLOR][/URL]. May I know to get this work when I do … | |
Hi There, Can anyone explain to me this line of code? What is it used for? etc.. [ICODE]$HTTP_POST_VARS['command'][/ICODE] The text that I saw it in doesn't explain it... | |
hi!.. I'm a newbie with this, pls help me!! every time I install apche 2.2 in my windows xp, I alway get an error. "could not reliably determine the server's fully qualified domain name" and "only one usage of each socket address" | |
Hi guys. I have a DB table looking like this: #DATE #NAME #C1 #C2 2007-08-27 user 1250 2294 2007-08-28 user 1816 3096 2007-08-29 user 89 3153 2007-08-30 user 71 2986 [..] I started collecting data in late August 2007 and it's being updated every day. I want to fetch the … | |
Hi, I try to take data from mysql and insert into xls. I achieve that but I cannot sort out the char problem. Turkish characters are displayed in a weird shape in the file but everything seems fine when i display them in a web page. I tried ISO-8859-9(which is … | |
Hi everyone, I'm now fiddling over a week to fix a problem on my linux-webserver. I have the following code: [CODE] ... $bool=mkdir(trim($semname), 0777, TRUE); //chmod(trim($semname),0777); $f2=fopen(trim($semname)."/index.php","w"); ... [/CODE] it works perfectly when working on my home server under windows but as soon as loaded up on my linux-webserver it … | |
Hi This is ScorpionZ I have Created a window that holds an Id of Particular Product having code this: <head> <script type="text/javascript"> function poponload() { testwindow= window.open ('image_viewer_window.php?images=<?=$prod_id?>', "Image","location=1,status=1,scrollbars=3,width=452,height=218"); testwindow.moveTo(215,350); } </head> <body> <td bgcolor="#F8F8FF"><a href="#" onclick="return poponload()">View Images</a></td> </body> // Talking about $prod_id it is an Id already in … | |
hi i have a html page when the user clicks a button in the parent window a popup window will be opened which will contain the login page.if the user is a valid user then i want the parent window to get refreshed so that i can show him the … | |
Hi, I came up with this problem last night. I have a URL [url]http://www.mysite.com[/url] How do I fetch the folder name that was supplied in the URL. For example: [url]http://www.mysite.com/xyz[/url] or [url]http://mysite.com/myfolder[/url] or [url]http://www.mysite.com/xxx[/url] Please note that I can either use www or [url]http://www[/url] or just http:// in my domain … | |
from my query sql get result like this : btsname------date------dcr aaaa---------jan01------0.2 aaaa---------jan02------0.3 aaaa---------jan03------0.4 aaaa --------jan04------0.5 . . bbbb---------jan01------1.1 bbbb---------jan02------1.2 bbbb---------jan03------1.3 bbbb---------jan04------1.4 . . i try to change result below btsname ----jan01-----jan02-----jan03----jan04-- aaaa--------0.2-------0.3-------0.4-------0.5 bbbb--------1.1-------1.2-------1.3-------1.4 . . i try to make php like this $resulthw=mysql_query($rs); $n = array(); while($row = mysql_fetch_assoc($resulthw)){ if(!isset($n[$row['btsname'][date]])){ … | |
I was wondering if it is possible to download/copy a zipped file with images from one server to another and then unzip the file to a folder with PHP? If so, any suggestions of how or where to read up on it? By the way, the zip file requires a … | |
just wanna ask..if session cant be use, i try setcookies() to get the variable pass through the pages, however i get this error message: Warning: Cannot modify header information - headers already sent by (output started at C:\Program Files\VertrigoServ\www\logincheck.php:2) in C:\Program Files\VertrigoServ\www\logincheck.php on line 3 i put setcookie($username, time()+3600); right … | |
Hallo members, I have been trying to learn PHP/MYSQL but I have been disappointed all the time. I have installed PHP DEV package that has MYSQL and PHP. Then I tried writing code via Macromedia Dreamweaver ... but when I save the dot php (.php)files and try viewing my pages, … | |
hi...i am doing form for bill redemption, and juz wanna ask is there any function in php used to check for expired date? like current month is march, if user enter due month to be january, then it will be invalid. Any function to detect current date? By the way, … | |
how to running apache and pws togther??? Thanks, Ardy SAtria | |
i need to embed text with different fonts to an image it will be cool if i could use the .ttf font files for writing text Thanks in Advance | |
Im writing a website, but when one goes to login it is not detecting the username/password the code i used follows(I just started learning yesterday... so im kinda lost as to why its not working). [code=php] <?php session_start(); $errorMessage = ''; if (isset($_POST['txtUserId']) && isset($_POST['txtPassword'])) { $host="localhost"; $username="falconnest_forumuser"; $password="qazasdedc"; $db_name="falconnest_forum"; … | |
I have a timestamp column in a mysql table. Using PHP, how do I convert the timestamp format which is "YYYY-MM-DD HH:MM:SS" into a format like "March 16 2008, 08:41 am" ? Please help Thanx | |
I’d like to have a php page that will retrieve the 10 most recent articles submitted to a database and create a static html page with the results from the query. The idea is to reduce the load on my mysql db by only hitting the db once instead of … | |
hi for all the expert here, i am now facing a minor problem on retrieving data here. MySQL do contain all the variables defined with data inside it. However, i juz need to know how to loop through the array to get all the data in a row? Below is … | |
I have created a image upload for the site i am working on i now want the uer to be able to click on a preview button and this takes them to a separate page where they can see the images that have been uploaded. for this to happen would … | |
Hi, thanks to Petr.pavel I managed to get my array to have checkboxes but my problem is that the form uses php_self and so where do i use the insert query to insert to DB. I dont want page refreshes. I usually put the insert query in a php file … | |
Hello, I created this site on my local machine using PHP 5.0.4 and mysql 4.1 and it works perfectly fine. I then ftp it to my webhost but the code to retrieve values give me this error. Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/www/laterallinks/ApplicantInformation.php … | |
i have a textbox and a button,like this: [code=php] <form method='post' action=<?php echo $_SERVER["PHP_SELF"]; ?> > <input type='text' name='write'> </input> <input type='submit' name='push'> </input> </form> [/code] , and i want that everytime that i push the button the content to be listed on the page without the previous content being … | |
Dear Friends, I would like to buy community software. the community software, which includes forum, chat, files sharing. with using the technologies php and MySql. please suggest me which will be best. thanking you, maza | |
Hi I've just got a nice php form done and I now need my visitors to be able to upload pics and have them sent with the form data. Is that possible in a php form, if so, can anybody point me in the right direction. Many thanks. LEE | |
hi, i am trying to display a random product from my database along with its description, price and image. but i am having a little trouble. i can display a random product and its info by directly inputting it into an array, but i can't call it from the database … | |
Hi, has anyone a clue where to get the statistic for PHPLD? Example: Categorys 27 Subcategorys 124 Links 177 Pending 0 Today 0 Online now: thanks | |
Hi, i was running a script on my server (Latest apache and mysql and PHP 5.1.6) and i am getting the following PHP error: PHP Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of [runtime … | |
hi Im doing a website at the moment, basicly its like; bebo, myspace sort of style style (but franticly reduced in users). I would like to know how to hold the time in which users have signed on so i can include a "last active" box for other users to … | |
Ok So right now I am using a script called MicroCalendar to setup a client calendar where A client can add an appointment to it but I need to put something into place that makes sure that they cannot overlap appointments..right Now im just saving appointments to txt files with … | |
I have a script (below) that consists of a form using javascript that shows an array in a table below it once a number is chosen. What i would like to know is can i turn the array into a form as well with the same data but include a … | |
I am using xmlhttp via VBscript to upload files to a sharepoint directory. I know there are much better ways to do this but I have several constraints that have forced this solution. I have been able to decode a base 64 file properly, write it to a file (i.e. … | |
please give me an idea what worg with this file ,whan i mail through then the html working in also sending with the content ,what is the error in this file <?php $msg="<TABLE align=center bgColor=#990000 border=0 cellPadding=4 cellSpacing=1 width=\"95%\"> <TBODY> <TR bgColor=#ffffff> <TD class=txt width=\"25%\">Name </TD> <TD class=txt width=\"4%\">::</TD> <TD … | |
Plz Give A solution for this | |
I have some problem in running this page whan i running three pages have same error on the last line of the page i could not find any solution ,can someone tell me the procedure how can i run this page | |
Hi everyone, I've just installed the latest versions of the aforementioned programs in a bid to get started with PHP (yes, I'm new to it). Here are the specific versions: [LIST] [*]Eclipse 3.3.2 M20080221-1800 [*]PDT 1.0.2.v20080102 (plugin installed via Software Updates) [*]WampServer 2.0 (March 7 2008) [*]ZendDebugger for PHP 5.2.x, … | |
I am new in php line ,iI have made some pages which i change from aspto php but i dont better understand the method to connect if with my sql database,like objrs to $row and much more,can someone tell the procedure to connect php page to database | |
Is there any way to count users in my chatroom and display whos chatting using javascript or ajax? code in php below has issues, but this is what it should do. <?php $chatnames = file('http://client11.addonchat.com/scwho.pl?id=292747&plain=1'); $indx = count($chatnames); $indxcom = $indx - 1; if ($indx == 0) { echo "<b>No … | |
hi, im getting these 4 (or 5) errors when i validate my page at w3.org [URL="http://validator.w3.org/check?uri=http%3A%2F%2Fhome.sprit.org%2Fdonrow%2Fforum%2F&charset=%28detect+automatically%29&doctype=Inline&group=0"]click here to see the errors![/URL] what can the problem be?! plz help... | |
Hi there, i hope someone can help me with my problem...... I have designed a web site and developed it already, i am on my Contact page and i am trying to write a php script for the user to send me email..........i have the code, and i followed several … | |
Hi everyone, I'm a lazy programmer and when I want to create an array that I can store serialized in a database I don't feel like typing out all the array stuff rather I want to use a delimited string something like this: [code]access.read=1,2,3:: access.write=1,2:: access.modify=1,2:: access.manage=1:: somethingelse=10101[/code] So I … | |
Please, where is the problem? Unable to jump to row 0 on MySQL result index 3 in c:\apache\htdocs\cd_shop\funkcie_s_databazou.php on line 1041 function zrataj_cenu($kosik) //funkcia pocitajuca vyslednu sumu vsetkych poloziek v nakupnom kosiku { $cena = 0.0; if(is_array($kosik)) { $conn = db_connect(); foreach($kosik as $EAN_kod => $qty) { $query = "select … | |
What would fundamentally change with MySQL between using XAMP or WAMPserver so as to render MySQL inaccessible, triggering a MySQL 2003 error code? Last Sunday I was comparing XAMPP with Wampserver. I used the same MySQL database. I approached the experiment from the analogous point of view of using the … |
The End.