hello when a person registers at the site his membership needs to be approved by the admin on admin page when the admin approves the member the page show no...
Hi http://www.php.net/manual/en/function.date.php Regards Marek ... From: Anuradika To: php-objects@yahoogroups.com Sent: Thursday, March 03, 2005 2:46 AM ...
Do you mean export Excel data and import it into a script? If so, you can export as CSV data and read the data back into arrays for display. If you mean send...
steve miller
steve@...
Mar 4, 2005 5:49 pm
2034
... also, http://www.bigwebmaster.com/1786.html or, if you're looking for the opposite, putting a recordset out to an excel sheet instead of a table, you need...
hi can i implement directory control type of thing using html/php that can be browsed like file control plz help regards suparno ... Celebrate Yahoo!'s 10th...
In my opinion you shoud check extension ... From: Madhana Gopal To: php-objects@yahoogroups.com Sent: Monday, March 07, 2005 3:33 PM Subject: [php-objects]...
Any one to help me translate this query into MySQL or get any equivalet query for pivot table ... TRANSFORM First(examresult.Grade) AS FirstOfGrade SELECT...
Dear All, I am going to develop a search engine in PHP but i have no much knowledge about that, that how the search engine works and how i will handle it using...
check this link http://in.php.net/manual/en/function.pg-connect.php Yahoo! India Matrimony: Find your life partneronline. [Non-text portions of this message...
Hi .. i'm new in here.. and this i my first email .. About displaying excel sheet using PHP .. Here's a code I generate for the same purpose: /* ~~~~~~~~~...
Hi there, I have coded the project using php 5.0.3, with MySQL 4.1. I am using require("Conn_to_Mysql.php"); $query = "Select * from tbl_BBY "; $result =...
Are you sure the Conn_to_Mysql.php contains the correct username and password and the correct host to where your mysql installation is? I'd say you're failing...
try this require("Conn_to_Mysql.php"); $query = "Select * from tbl_BBY "; $result = mysql_query($query); while($row = mysql_fetch_array($result)) { echo...
Kerem Titiz
keremtitiz@...
Mar 8, 2005 5:24 am
2046
hi .. If I got ur point, u could use this function getdate() which returns an array of the date parts, like the following: $today_date = getdate(); $t_year =...
sorry there's a mistake in what i wrote..It's been long time since i've used this function... here's the correction: $today_date = getdate(); $t_year =...
Hi.. I'm trying to export an excel file using the package published by pear.php.net .. well, it's using header for that, but what I used to use is the way I...
do i have to installed Excel on my machine? if i'm going to use openoffice how is it? ... get my key here http://geocities.com/vearn2000/key.txt ************* ...
i have tried to remove the @ which looks like this now $cx = mysql_connect('localhost', 'db', 'password'); mysql_select_db("db") or die( "Unable to select ...
This first code is working well, which return the date of the server, but, getting rows from the table tbl_BBY doesnt work, please help $query = "Select NOW()...
My feeling is there is something wrong the way PHP is set up, try using mysql_fetch_assoc() and see of that works. The reason is that mysql_fetch_array () uses...
Have you checked to make sure that table exists in your database? And that it's not corrupted? You might want to issue this command instead of the "Select...