Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~6K People Reached
Favorite Tags

35 Posted Topics

Member Avatar for resant
Member Avatar for keyroche

do you mean you wish to use PHP instead of this "http://wwtele.com/cgi-sys/formmail.pl" ? this part of your form is very confusing [code=html] Name:<input name="realname" type="text" size="30" /> <input type="hidden" type="text" value="REAL-NAME-VALUE-HERE" name="name" /> [/code]

Member Avatar for KushSoneji
0
611
Member Avatar for emhmk1

you can try this [code=javascript] function checkAll(field) { if(document.myform.CheckAll.checked) { for (i = 0; i < field.length; i++) field[i].checked = true; } else { for (i = 0; i < field.length; i++) field[i].checked = true; } } [/code]

Member Avatar for scaiferw
0
144
Member Avatar for rajeesh_rsn

i'm not sure what your question is but a query isn't saved , only parts of it are sent to the search.php page using the GET method (for example) which in turn are used to construct a database query and display the results of that query (search)

Member Avatar for hashinclude
0
114
Member Avatar for aliveina

if you wish to display a countdown, you will need javascript which will force the redirect for you

Member Avatar for aliveina
0
93
Member Avatar for DealthRune

try this [code=php] echo number_format(1.0E+10, 0, '', ''); [/code]

Member Avatar for DealthRune
0
162
Member Avatar for jonathanroy

you'd probably have to use an sql qury such as this: SELECT business_name FROM business_table WHERE business_name LIKE '%KEYWORD%' ORDER BY bid DESC; and ofcourse never forget to sanitize user input first

Member Avatar for hashinclude
0
151
Member Avatar for Exploded Fiber
Member Avatar for MDanz

or if you didn't want to change your php.ini (i don't think you should) use the @ sign [code=php] <?php $url = "gssgdd"; @$tags = (get_meta_tags($url)) ? get_meta_tags($url) : false; if($tags){ echo "worked"; }else{ echo "failed"; } ?> [/code]

Member Avatar for hashinclude
0
95
Member Avatar for JRM

if a session variable was set, you can access through $_SESSION['variable_name']

Member Avatar for hashinclude
0
134
Member Avatar for zeynokiz

you wish to select all tag id and tag text for every item? well , you can do that in one query [code=mysql] SELECT u.item_id, t.tag_id, t.tag_text FROM useritemtag u, tags t WHERE u.tag_id = t.tag_id ORDER BY u.item_id ASC; [/code]

Member Avatar for hashinclude
0
135
Member Avatar for mvblhp
Member Avatar for almostbob
0
184
Member Avatar for JuliaNell

before you do the insert, query the table for that username to check if it already exists, and if it does, return a "username already taken" error message.

Member Avatar for liamfriel
0
77
Member Avatar for prem2

you can do that by displaying the result of dividing the larger limit value by 5

Member Avatar for hashinclude
0
57
Member Avatar for Ir$had

[QUOTE=cwarn23;1162859]Yes for free. It is one of the things I enjoy doing when I have plenty of time. And latley I have had a lot of time with my SHA1 project aborted.[/QUOTE] he said "Fee" not "Free" lol

Member Avatar for hashinclude
0
146
Member Avatar for levsha

the reason is because you're not submitting the form in the first place , use an in put type submit to image instead

Member Avatar for levsha
0
156
Member Avatar for cloud09
Member Avatar for cloud09
0
141
Member Avatar for steven2

do you mean redirect to the subdomain "piecework.mydomainname.com/en/11" ?

Member Avatar for steven2
0
90
Member Avatar for Phil++

use the mkdir() function to create a directory the the copy() function to copy the index file :)

Member Avatar for OS_dev
0
148
Member Avatar for Bubbleboy

"setTimeout('animatefadein()', 1000);" should be inside the if statement inside animatefadein() function

Member Avatar for hashinclude
0
179
Member Avatar for NoID

you can use $_SERVER['REMOTE_ADDR'] which returns the ip address of the person browsing the page something like this [code=php] $ip = $_SERVER['REMOTE_ADDR']; if ($ip == '127.0.0.1') { exit('blocked'); } [/code] just an example :)

Member Avatar for hashinclude
0
100
Member Avatar for phoenix_dwarf

why not try this: [code=javascript] var moo= 15000.00; var orig= 920.00; var bool = orig - moo; if (bool < 0) { ...some code here... } [/code]

Member Avatar for phoenix_dwarf
0
115
Member Avatar for xolmc

get the contents of the folder and use "is_dir()" in an "if" statement so that you would chmod files only :)

Member Avatar for hashinclude
0
125
Member Avatar for mattias78

yes it can be done you could try something like this: [code=php] <?php $ftp = ftp_connect('polar.ncep.noaa.gov'); ftp_login($ftp, "anonymous", ""); ftp_get($ftp, 'akw.46001.bull', '/pub/waves/latest_run/akw.46001.bull', FTP_ASCII); ftp_close($ftp); $file = file('akw.46001.bull'); echo '<pre>'; foreach($file as $line) { echo $line; } echo '</pre>'; ?> [/code] this downloads the file, reads it into an array type …

Member Avatar for hashinclude
0
85
Member Avatar for niths
Member Avatar for Pooja J.

you need to access $_FILE instead of $_POST it should be: $file = $_FILE['file2']['name'] instead of $file = $_POST['file2'];

Member Avatar for hashinclude
0
112
Member Avatar for hashinclude

hello , first i want to say that im very new at c++ , i managed to create a very simple program through searching the internet , this little program involves running a certain exe file with parameters : (e.g: "c:\folder\file.exe" -parameter1 -parameter2) i am using the system() function to …

Member Avatar for epitalon
0
199
Member Avatar for hashinclude

Hello, please bear with me if this question is stupid. I'm fairly new to this and i really need to know. is it possible to use [B]"SELECT COUNT"[/B] to get the number of DIFFERENT values one column currently holds grouped by a value from another column.?

Member Avatar for cgyrob
0
160
Member Avatar for hashinclude

Hi, is it possible to control the output so that one output would replace the one before it ? let me explain, i made a countdown timer, the counting instance is printed out but normally i would get something like this [ICODE]9876543210[/ICODE] what i want is for the counting instance …

Member Avatar for Ancient Dragon
0
122
Member Avatar for sweRascal

i don't know if it will help but you could try this: [CODE=cpp] int seconds=time (NULL); string characters; char seconds1[128]; itoa(seconds,seconds1,10); string seconds2=seconds1; string sqlquery="INSERT INTO chatlog (datetime, message) VALUES (" + seconds2 + "," + characters + ")";[/CODE]

Member Avatar for sweRascal
0
120
Member Avatar for hashinclude

Hello everyone, i have the following code [CODE=cpp]#include <iostream> #include <conio.h> using namespace std; int main() { cout<<"\nPress Any Key To Continue "; getch(); return 0; }[/CODE] it compiles fine on my windows xp using microsoft visual c++ , and i can run the resultant executable file with no problems …

Member Avatar for Member #46692
0
180
Member Avatar for ssvetkoff
Member Avatar for hashinclude

HI, if i have something like this [CODE]char string[16]; std::cin>>string;[/CODE] and i type something and press "Enter" then [ICODE]std::cin[/ICODE]would terminate, how do i get it to terminate when my first key input is "Enter" ? because normally if i do that , input will not terminate and i will only …

Member Avatar for Narue
0
306
Member Avatar for hashinclude

Hello, i need help on how to search for a sentence inside a txt file after opening it and then applying a condition if that sentence was found. im a beginner so i don't know how. basically i have written a program that uses system("command>file.txt") to start a command line …

Member Avatar for hashinclude
0
502
Member Avatar for luv2die

i think you use the atoi function for that [code]string a; int b; b=atoi(a);[/code]

Member Avatar for luv2die
1
134

The End.