39,326 Topics

Member Avatar for
Member Avatar for veledrom

Hi, I use PHP and have a question. As cookies and sessions have their pros and cons, I don’t know which one is better for shopping card. If I use cookie then user my block it. Therefore, my e-commerce web site won’t serve the purposes. If I use session then …

Member Avatar for almostbob
0
94
Member Avatar for midnightdesire

Hi all! I created a form for a website I'm building for a friend; and he wants to be able to have the form information submitted to him via email. The problem is that when the information is submitted, the items are coming up with the names, not the label …

Member Avatar for Airshow
0
98
Member Avatar for tanmoy_india

I summarised my problem by a simple example,anyone plzz ans this...then I will be able to understand my problem.......: Suppose in a database named "DATABASE"..there is a table called "XYZ"..it has 4 rows named "T1,T2,T3,T4"..one primary key named "T_id"..now what I want that to access this same table via different …

Member Avatar for tanmoy_india
0
83
Member Avatar for lolodede

i need to retrieve information about customer order when the user submit their name this the code for first page [code=php] <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Prac 3 Task 4</title> </head> <body> <?php $conn = odbc_connect("warehouse","IWSDStudent","assign2"); $sql = "SELECT …

Member Avatar for lolodede
-1
273
Member Avatar for punithapary

Hi, I am trying to upload my images using my ftp folder by php code.Begining it was worked very fine.recently i shifted my domain from one server to another one server now if i am trying upload any images it storing path into database and its not uploading that image …

Member Avatar for punithapary
0
189
Member Avatar for genieuk

Hi, Don't know why but i always seem to mess my, mysql querys up somewhere, usually silly things like quotes etc. The code below, i have a problem. Basically when user gets an email they click the link and they are taken to a page where they can change there …

Member Avatar for genieuk
0
105
Member Avatar for angelic_devil

i have listbox 1 which displays status , based on selection of status listbox 2 displays usernames. and based on username selected the textbox displays the email id. its working fine till displaying user names in listbox 2 based on selected of status in listbox. but its not displaying the …

Member Avatar for angelic_devil
0
103
Member Avatar for sangdedi

Hellow all, I want to ask a question about making quiz script with PHP if I have an array like this : [ICODE]$pet = array("angora","bird","chipmunk","dinosaurus","eagle","finch");[/ICODE] and I want to make a question like this [B]Do you have angora ? oYes oNO [COLOR="Red"]|submit|[/COLOR][/B] when user click "submit" button, then it will …

Member Avatar for somedude3488
0
671
Member Avatar for Aamit

Hi, I want to Compare & count elements in array?? suppose in my array $arr={140,123,34,140,23,123,140,140,123} I want to display like 140 - 4 ( comes in array 4 times) 123 - 3 34 - 1 23 -1 How to do this??

Member Avatar for BzzBee
0
107
Member Avatar for sidrules1984

html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Validation Page</title> </head> <body onload="document.validate.name.focus();"> <div align="center" id="validate"> <form action="validate.php" method="post" name="validate" runat="server" title="This a validation form" > <table width="200" border="1"> <tr> <th scope="row">User Name </th> <td><label> <input name="name" type="text" id="name" /> </label></td> </tr> <tr> <th scope="row">Password</th> <td><label> <input name="psw" type="password" id="psw" …

Member Avatar for BzzBee
0
150
Member Avatar for otreborid

hi there! im having a problem with making an order form. i want to display the products from a database and beside the product names, the customer could enter the quantity he wants to order. when the submit button is clicked, there comes the error. im a newbie in php …

Member Avatar for BzzBee
0
84
Member Avatar for markx_018

:?: HI Guys...:'( can anyone of you knows how to make a quick qoutations.. By the way i'm mark a newbie in programming..and here's my problem.. i would like to create a quick quote for my project that can solve a simple mathematical quotations..like for example when you enter your …

Member Avatar for BzzBee
0
103
Member Avatar for veledrom

Hi, I get an error when i try to echo my cookie. [inlinecode]Notice: unserialize() [function.unserialize]: Error at offset 0 of 12 bytes in...[/inlinecode] I cannot find a solution. Help please. Thanks [code] class MyCookie { public function __construct($cookieName, $sessionId) { if(! isset($_COOKIE[$cookieName])) { $cookieValue["SESSION"] = $sessionId; setcookie($cookieName, $cookieValue, time()+60*60*24*7); } …

Member Avatar for veledrom
0
58
Member Avatar for crsukla

I have php 4.4 version i am getting a strange error here. [CODE] echo strtotime("2009-04-24T20:00:05.000Z"); [/CODE] It is giving result as -1 What is the problem and how to overcome this. I dont have an option for php upgradation.

Member Avatar for BzzBee
0
83
Member Avatar for davewylie

Does anyone have any ideas on how to change how submit buttons can be changed from the default? I think it is a real shortcoming of HTML that onmouseup and onmousedown etc are not permitted with <input type='submit'.... I just feel there must be some clever way using javascript or …

Member Avatar for somedude3488
0
161
Member Avatar for himerus

If you are trying to do a page, or section of news that only shows a certain length of characters, and then has a link for Read Full Story, or more..., etc the following code is just what you need: [php] $longtext = "Full text string to be manipulated"; // …

Member Avatar for ShawnCplus
0
116
Member Avatar for genieuk

Hi, As you can probably tell by now my knoweldge of MySQL is not very good. I basically have two tables. One called [B]userinformation[/B] and another called [B]profiles[/B] My userinformation table is like this: [CODE]CREATE TABLE `userinformation` ( `id` int(11) NOT NULL auto_increment, `status` varchar(20) NOT NULL, `username` varchar(20) NOT …

Member Avatar for ShawnCplus
0
130
Member Avatar for odysea

to connect/close connection my dbs i use the below include files [B]config.php[/B] [CODE]<?php // Admin Database Properties $admindbhost = 'localhost'; $admindbuser = 'user_default'; $admindbpass = '************'; $admindbname = 'db_admin'; // Default Database Properties $defaultdbhost = 'localhost'; $defaultdbuser = 'user_default'; $defaultdbpass = '************'; $defaultdbname = 'db_default'; ?>[/CODE] [B]opendb.php[/B] [CODE]<?php // Admin …

Member Avatar for pritaeas
0
147
Member Avatar for chandradyani

dear all, I would like to know how to structure and SQL query to query between months ranges Something along the lines of: SELECT * FROM table WHERE datetime BETWEEN xx/xx/xx AND xx/xx/xx I have a table with the following date field entry named datetime: 07-05-2009 Which I am assuming …

Member Avatar for almostbob
0
111
Member Avatar for shadiadiph

I have the following problem is that regardless of the error it only seens to return the value of $error==4?? there are multiple files being uploaded but i only want to retrn 1 message error 4 if no files have been uploaded and error 2 if a file is more …

Member Avatar for Xlphos
0
292
Member Avatar for hassan ali

how i use apache server, php, and MySql .Tell me the procedure for installation of Apache server, PHP, and MySql

Member Avatar for cwarn23
0
142
Member Avatar for tanha

Hello everybody, I have this text file, and when I import them into mysql through phpMyAdmin, everything is ok, but the persian (Farsi) not shown correctly, also I use ' utf8_persian_ci ' collation, can anyone kindly plz convert this file into MySQL that farsi data shows correctly too? NOTE: farsi …

Member Avatar for BzzBee
0
104
Member Avatar for vidhyaponnusamy

Hi When i use time() function in php,i got the value as follows, [B] 1242104663[/B] i retrieved thelogin time for ,but i want to get the current system time in hours,mins ,seconds Regards, Vidhya

Member Avatar for BzzBee
0
59
Member Avatar for vidhyaponnusamy

Hi I am creating session for my website,i want to expire the session after particular time for the user logged in,i want to retrieve current time in PHP,i used a time() function in php to get current time,but i got sequence of number.can oyu help me how to get current …

Member Avatar for BzzBee
0
91
Member Avatar for BzzBee

i have a function like i have quote issue with the function. I have to use this object in javascript code due to some reasons i cant use double quotes two times. i have to use single quotes around parameter as well. what should i do. please suggest. [CODE] <script …

Member Avatar for BzzBee
0
70
Member Avatar for jeffc418

Hi all! So I've been reading about the "FOR XML AUTO" function which sounds great, but it hasn't been working when I try it in phpmyadmin. I get an error in the area of "FOR XML AUTO", I know SimpleXML is disabled on my package but would that be why …

Member Avatar for jeffc418
0
272
Member Avatar for genieuk

Hi, I am trying to display the users email address when they login to there account on there profile page.. I have successfully done this for there username as i use $_COOKIE to display the users name with the DB. Problem is i am not sure how to do it …

Member Avatar for genieuk
0
121
Member Avatar for odysea

is there any way to get the name before i post, i want to get the name before i post becuase i want to delete a php file and create a new one instead of it [CODE]if(isset($_GET['id'])) { $query = "SELECT id, name, title, description, keywords, content, skin ". "FROM …

Member Avatar for sureronald
0
91
Member Avatar for charbel007

Dear php pro guys i need your help please; i have 3 files; index.php login.php and member.php my major problem i cant prevent the link to be copied after logging in in php4 ---file:memeber.php--- if ($_SESSION["login"] !=1 -- it works great when the user log in and link can not …

Member Avatar for charbel007
0
189
Member Avatar for mrcniceguy

I have a script which upload image to the server and resize them when uploading)) the script give a max width=200px also max height=200px))for i uploaded image.. i would like if some one can help me modify it,in such away that if Only width must be Max=200px but for height …

Member Avatar for mrcniceguy
0
122

The End.