Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
74% Quality Score
Upvotes Received
22
Posts with Upvotes
19
Upvoting Members
21
Downvotes Received
9
Posts with Downvotes
9
Downvoting Members
5
8 Commented Posts
~35.0K People Reached
Favorite Tags
Member Avatar for kireol

Anyone know of a way using php (no shell_execs), to convert a pdf to an image type of png, jpg,gif, or tif? In my existing app we are shelling out using ghostscript, pdftk, etc, and would like to switch this over to all inside of php. Yes, I've googled. a …

Member Avatar for diafol
0
2K
Member Avatar for rohoni

Hi i am developing a new website for mobile shop in php, I need to implement to send sms for the login users, please help me with code in php

Member Avatar for Semy
0
352
Member Avatar for engmizan

I am getting this problem when i submit an online inquiry form. How i fix it. My code is(mail.php) : <?php require_once 'admin/common/config.php'; // Read POST request params into global vars $to = "engmizan@gmail.com"; $from = $_POST['email']; $subject = "Online Enquiry / Order Form"; // registration information $name= $_POST['name']; $desig= …

Member Avatar for almostbob
0
352
Member Avatar for shea279

anybody know how to read the first 30 seconds of an mp3 file using php, as a preview version of the original mp3?

Member Avatar for stwalcher
0
253
Member Avatar for babydol

Hi i m creating a small web application that allows a user to select multiple options from a list box.The problem is i cannot write that information to the database. I have two forms: one to get information from the user and another to write that info to the database.The …

Member Avatar for wonderlhily
0
2K
Member Avatar for k9shark

Hi all.. I've learnt a bit of html and css in the last week, and am eager to start with more complex website actions than simply posting widgets.. For instance, allowing comments to be made and feedback etc.. I was wondering whether PHP is a good place to start for …

Member Avatar for diafol
0
225
Member Avatar for ebookstores

gud day to everyone..im just new in web development..i just want to ask whats the problem if this error occurs: Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /www/zymichost.com/e/p/u/epurchasing/htdocs/index1.php:7) in /www/zymichost.com/e/p/u/epurchasing/htdocs/library/config.php on line 2 Warning: session_start() [function.session-start]: Cannot send session cache limiter - …

Member Avatar for rififi
0
104
Member Avatar for Blacklister

i want to update some links and data on a web page without the web page getting refreshed ..... please help me with this ....

Member Avatar for ketan_156
0
589
Member Avatar for jakesee

Hi, Without first knowng what public class variables the class has, how can i display a list of all the variables in that class along with the values? [CODE]print_r(new MyClass());[/CODE] will display the public variables and values, plus some other unwanted entries, but I cannot do anything with them. I …

Member Avatar for Setvir
-1
409
Member Avatar for kanjigirl

Is it possible to control which files get included by looking at the browser type? For example if I'm using: [CODE]<?php include("includes/nav.php"); ?>[/CODE] but for all IE browser versions I'd like to call a different file, nav_ie.php, can that be done, and if so, how would I go about it?

Member Avatar for FlashCreations
-1
109
Member Avatar for gregoirelegros

Hi I would like to capture data from my friends. I'm going to use a page on my website with a form. I'll send my friends a link to the page such as [url]http://www.mysite.com/surveypage.htm?friend=john[/url]. When the friend hits my page using this url I would like firstly to show a …

Member Avatar for microspective
0
176
Member Avatar for andydeans

hi, i was wondering of a simple way to generate a pdf & excel spreadsheet from a php form and mysql table with data in it? any help would be great. many thanks

Member Avatar for andydeans
0
738
Member Avatar for takeshi

Hi..this code is not working..the error was [ICODE]while ($row = mysql_fetch_array($sql)[/ICODE] but i know it was correct query.. [ICODE]search.php[/ICODE] [CODE] <?php mysql_connect ("localhost", "root") or die (mysql_error()); mysql_select_db ("records"); $criteria = (int)$_POST['criteria']; $sql = "SELECT * FROM students WHERE "; switch($criteria) case 1: $sql .= "course"; break case 2: $sql …

Member Avatar for kireol
0
260
Member Avatar for tekneck

I am trying to call a php script from a crontab sh script... I can get it to work if I hardcode each file, but I want to pass a variable to a single php file either from hardcoded calls in the sh script, or even better, by looping through …

Member Avatar for kireol
0
191
Member Avatar for babydol
Member Avatar for xuexue

is it possible to have a clickable table wherein once you click that specific row, a dialog box will appear to display the entire row. could you help me with this one..thanks in advnce ^^

Member Avatar for xuexue
0
99
Member Avatar for Stefano Mtangoo

till now I have never done anything dealing with exceptions. Now I have to deal with exception. Basically I have function below which I want to wrap in try/exception. I want to connect to database and if database connection failed then it should catch exception that will do some stuffs …

Member Avatar for Stefano Mtangoo
0
91
Member Avatar for hno

HI, I have two webserver and two domain and I want to share information between them.What I want to do is this to share the database between two webserver so ,if I add new information through domain 'A' that information can can be catch from domain "B" and I have …

Member Avatar for kireol
0
83
Member Avatar for sfrider0

Is there a way to do this in PHP without using IMAP? All I need is to get who it is from and the text of the message. No attachments or anything.

Member Avatar for kireol
0
73
Member Avatar for ~Redous

Hi, im having trouble i managed to create a password field and got everything working i then changed my mind and wanted to add a username field on to the login. im getting the following error and i have tried both && and || yet none seem to work Parse …

Member Avatar for ~Redous
0
132
Member Avatar for anu.reka85
Member Avatar for manojjena1982

Hi! Akl I want to upload a file sizeed around 2GB. Could you help me? Thanx in advance

Member Avatar for kireol
0
110
Member Avatar for the0ry

I am familiar with several PHP random image loaders. The only thing I can not seem to find very easily with these scripts is one that prevents repeats for so many reloads. I have a directory containing 3500 images. What I have noticed is that I can cycle through the …

Member Avatar for kireol
0
625
Member Avatar for aneeka

Help!! I need to generate a bar graph out of the data from the MySql database, could anyone help me here? Thanks!

Member Avatar for kireol
0
186
Member Avatar for WaltP

I have the following code in a form: [code=php] <? for ($n = 0; $n < count($filelist); $n++) { printf ("<button type='submit' name='imgnam' value='%s'>", $filelist[$n]); printf ("<img src='%s' width='100' />", $dirname . $filelist[$n] . ".gif"); print "</button>"; printf ("<br>%s</p>\n", $filelist[$n]); } ?> [/code] [ICODE]$dirname[/ICODE] contains the directory value [ICODE]$filelist[][/ICODE] contains …

Member Avatar for WaltP
0
134
Member Avatar for Morty222

I am running this foreach loop. I need to seperate each value by a comma, which this does. However, I need to kill the comma on the last value. [code] foreach ($_POST as $key=>$value){ if ($key != "submit" && $key != "type"){ $fields = $key.","; echo $fields; } } [/code] …

Member Avatar for arunss
0
179
Member Avatar for smartness

Hi guys, can you please suggest me a good class that supports sub-sub-sub categories. I tried a lot of them, none of them seems to fit me! I also tried to modify them for my needs, but the more i try, the worse it gets lol :P If you know …

Member Avatar for kireol
0
129
Member Avatar for samiq

PHP HEllo world, i need some help here plz. i want to make an addressbook and want to have an index file that includes/requires all the other files in the include folder(the include folder contains all the functionality) so that i dont have to manually include files in other files. …

Member Avatar for samiq
0
131
Member Avatar for achiman

Hi, Can anybody please tell me if there is a code in PHP that I can attach to a link and when it is clicked the web page is printed

Member Avatar for achiman
0
114
Member Avatar for moerpheus

hi, how do i get pdf lib to work with php. I want to generate pdf docs. please help.

Member Avatar for moerpheus
0
71