Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #4K
~29.6K People Reached
About Me

simply a software geek

PC Specs
CI 5
Favorite Tags
Member Avatar for hiiiiii@
Member Avatar for diafol
0
308
Member Avatar for ankit.baphna

Hi Friends, User logged in as: ankit.baphna@gmail.com I am creating gif image by below line 1 code with name demo25_"email address of user" ex: demo25_'ankit.baphna@gmail.com'.gif it gets created in my folder with naming within single qoutes: 'ankit.baphna@gmail.com'.gif but I am not able to read this file to display image on …

Member Avatar for sftranna
0
200
Member Avatar for danishbacker

can any one tell me how to change the maximum file upload size? upload_max_filesize i got `ini_set('max_upload_filesize', 8388608);` for setting it to 8M but i need to know where to change it, I mean where is the php.ini file is located in my remote folder! i also tried to edit …

Member Avatar for sftranna
0
178
Member Avatar for tusharbhatia

Hi, I am trying to create an application which utilizes the distance finder. I want to be able to calculate the distance between two points. I have managed to (with the aid of a lot of tutorials) be able to calculate the distances between two points. Now, in the application, …

Member Avatar for Ravi_10
0
5K
Member Avatar for amber.long83

Hi friends I wishing your small help for magento customization. I want to rename default top links given in magento to my own caption. I want to change "My Cart (1 Item)" to "My Bag (1 dozen)" Please anyone guide me to achieve this thanks Amber

Member Avatar for sftranna
0
385
Member Avatar for mr-cracker

Hello, I'm trying to automate downloading from turbobit.net through php, i login successfully and get all the cookies. then when i try to intiate another connection to download a file i get these headers back > HTTP/1.1 200 OK Date: Thu, 26 Jul 2012 17:44:02 GMT Content-Type: text / html; …

Member Avatar for sftranna
0
805
Member Avatar for neithan

Hi! I'm trying to implement the easy curl function to get a website, `curl_easy_setopt(curl, CURLOPT_URL, m_sURL);`, where the third argument is the only one that i give, and it's in this part of the code: ... public: string m_sURL; URL() : m_sURL("http://www.google.com") { } ... Now, when I call `curl_easy_setopt(curl, …

Member Avatar for sftranna
0
235
Member Avatar for landog

[code] #!/bin/bash if [ [ $a == $b + $c ] || [ $b == $a + $c ] || [ $c == $a + $b ] ]; then [/code] result: too many arguments What is the proper syntax? Thanks!

Member Avatar for laksh.ss
0
164
Member Avatar for lightningfire

I am trying to learn C++ and am trying to figure out how to use strings and if statements together. Here's the code I'm trying to play around with: [CODE=c] #include <iostream.h> int main() { char * a; cout << "Do you want to enter?\n"<<endl; cout << "To enter, type …

Member Avatar for sftranna
1
11K
Member Avatar for sanju456

[COLOR=DarkSlateBlue]Hi all, Problem: Send mail is configured in my system and now i want to write a shell script using which i can send mail to my rediffmail account. Its little urgent & i will be very thankful if someone send me the code. regards, Sanjeev Kumar(sanju456@rediffmail.com)[/COLOR]

Member Avatar for sftranna
0
2K
Member Avatar for Mayank Mathur

what command to use if i want to use both "from:" & "To:" field in same e-mail in Linux mail() supports subject , not "from" Sendmail() supports "from", not "subject" regards Mayank

Member Avatar for sftranna
0
612
Member Avatar for yomr

here is my dilemma I have a database that consists of tables (duh!) for an award nomination project where I have a table for nominees and a table for each category of qualifications for example table 1 (nominees) name ID_NUMBER PK DEPARTMENT NAME PHONE# table 2 (education_information) ID_NUMBER FK DEGREE …

Member Avatar for agbenaza
1
246
Member Avatar for LastMitch

Hi I have a few questions. **1) I want to put the a text editor in the admin section so I can edit the 'home page' context from the admin section which is in php language (I have no context in the admin created yet, this will be my first …

Member Avatar for dannette
1
4K
Member Avatar for cmaheshwari16

Hi all, I am giving the href to give a link to a file. The problem is that in IE it opens the text files in the same browser, but in mozilla it works fine(gives prompt of save as option). I want the same functionality for IE also, searching Google …

Member Avatar for almostbob
0
708
Member Avatar for inni2626

Hello Everyone, Am working on a project with includes php and mysql database.Everything works fine but i fail to make the validation work or i guess don't know how. I got a form and i would like if the user input numeric or less character to submit an error message. …

Member Avatar for sftranna
0
296
Member Avatar for turt2live

Hello, I currently have this setup for a "download a mp3" php page: [CODE] <?php include "class.php"; $account = new account(0); $id = $_GET['id']; $u = $_COOKIE['username']; $a = mysql_fetch_array(mysql_query("SELECT * FROM items WHERE id='$id'")); $file = $a['actualPath']; header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Disposition: attachment; filename=$file"); header("Content-Type: audio/mpeg"); header("Content-Transfer-Encoding: binary"); …

Member Avatar for vibhaJ
0
1K
Member Avatar for apanimesh061

<prjt.ctl> [CODE] LOAD DATA INFILE 'F:\DataMining\dvdlist.csv' DISCARDFILE 'F:\Datamining\Discard\dvdlist.dis' INTO TABLE dvdlist FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' TRAILING NULLCOLS( DVD_Title char, Studio char, Released date "DD-MM-YYYY" NULLIF Released=BLANKS, Status char, Sound decimal external, Versions char, Price char, Rating char, Years char, Genre char, Aspect char, UPC integer external, …

Member Avatar for debasisdas
0
140
Member Avatar for sftranna

hey dear, i am facing a problem while using MIGS. Problem is this that whenever im direccted to card details (Payment Details Page) amount that i sent t0 the VPC is divided by 100 so causing problems... so i get foar behind the success message :) my client is a …

Member Avatar for sftranna
0
138
Member Avatar for raju_boini525

hai all, i am working on shopping cart project, i need globalpay integration . i got the sample code and run in my localhost it shows me error this.[QUOTE]Warning: SoapClient::__construct() [function.SoapClient---construct]: I/O warning : failed to load external entity "https://certapia.globalpay.com/GlobalPay/transact.asmx?WSDL" in C:\wamp\www\exampls\PHP Web Service Sample (Credit Card) 4.0.0\PHP Web Service …

Member Avatar for raju_boini525
0
218
Member Avatar for sallecpt

hey all. I am trying to do validation via PHP for submitted forms. Below is my own code, please comment if its the correct method or not. However, I tried so many ways to have the /n or /r added, but I cant get to it. Its just to make …

Member Avatar for sallecpt
0
194
Member Avatar for Markstein

Hello, I need to have users fill out a form before they are granted to download any given file to generate sales leads. I do have a script which was custom made but am having some issues with it. I am wondering if anyone knows of a service (or script) …

Member Avatar for network18
-1
1K
Member Avatar for alganar

I am having issues with soap once I try the soap call with the array I get the following error what does this mean and how can I fix it? [CODE] Fatal error: Uncaught SoapFault exception: [HTT] Could not connect to host in /home/eye123/public_html/track.php:33 Stack trace: #0 [internal function]: SoapClient->__doRequest('<?xml …

Member Avatar for phper
0
167
Member Avatar for kodiak

Hi!!! I need to check a form for illegal characters through a whitelist(list of allowed characters) with php. A function that could do this for me would be helpful...I can't find one on google... I really have no idea how to do this.... thanks!!!! ~Kodiak

Member Avatar for stymiee
0
823
Member Avatar for Khishin

Two questions here, the first is whether the following error refers to the command exceeding 60 seconds or the whole page taking over 60 seconds to execute. "Fatal error: Maximum execution time of 60 seconds exceeded in /***/panel.php on line 35" The code is as follows. [PHP] <html> <head>Text</head> <body> …

Member Avatar for pc2forum
0
406