|
More site info...
PHP - Code | Forum profile
|
|
Forum profile page for PHP - Code on http://www.devnetwork.net.
This report page is the aggregated overview from a single forum: PHP - Code, located on the Message Board at http://www.devnetwork.net.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "PHP - Code" on the Message Board at http://www.devnetwork.net is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on PHP - Code:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
355
|
1,115
|
3,533
|
|
Post:
|
964
|
2,882
|
10,733
|
|
|
PHP - Code Posting activity graph:
|
Top authors during last week:
user's latest post:
Php link exporter
Published (2009-11-26 18:59:00)
The_L wrote: Can you upload your files? I already have, it was an attachment to an earlier post. I did make that clear in two separate posts. If you use the code in my attachment then the error you've had is impossible. If you're using the code you uploaded ( http://forum-racunara.com/test/link grabber.rar) then taggrab.class.php no longer contains a class declaration, so the $this variable doesn't exist in the context of...
user's latest post:
how do i echo out my data from...
Published (2009-11-23 17:18:00)
Replace your while loop above, with this: $output = array(); Line number On/Off | Expand/Contract while ( $row = mysql_fetch_assoc ( $query ) ) { $temp = array ( ) ; $temp [ 'linkto' ] = $row [ 'linkto' ] ; $temp [ 'linkto' ] src = $row [...
user's latest post:
archive files are corrubted if i...
Published (2009-11-26 23:46:00)
trazan wrote: I Am Linux User That's nice, but make the change anyways. It's called "planning ahead". You've only gone halfway between a regular download script and one that lets you pause and resume. Halfway means you get some of one and some of the other - and that means you don't have a fully functional script. For a regular download comment out the HTTP/1.1 206 and the Accept-Ranges headers. For a...
user's latest post:
PHP Order Form
Published (2009-11-26 16:11:00)
Foreach only accepts traversable objects, like arrays. $_POST['id'] is probably not an array.
user's latest post:
Php link exporter
Published (2009-11-26 19:17:00)
I'm trying to make your script to work...can you just make it work and attach it? it would be so much easier than this argue...i know i'm asking much but it would end all this...
user's latest post:
Time for Headaches
Published (2009-11-20 04:27:00)
_________________ If you want help from me, then you will read: Before Post Read: General Posting Guidelines Line number On/Off | Expand/Contract function Strive ( ) { if ( ! $aSuccess ) return $ofValue ; }
user's latest post:
PHP popen function : How to wait...
Published (2009-11-26 04:35:00)
I'm not sure of a way to do this. Can you not combine the two python scripts into one? Or maybe call the second script from the first. That way it wouldn't matter. You only need to call one script.
user's latest post:
Group by month/year from DATE...
Published (2009-11-26 10:34:00)
No, just asking if there is a way of possibly doing it that way, rather than changing the design of the table?
user's latest post:
Click on line in the table, to...
Published (2009-11-25 07:43:00)
hy everyone, I have 1 table of messages that is create dinamicaly. What im trying to do now is when the user click on 1 line of the table("each line of the table represents 1 message"), the message open in a new window. Im going to post my code here... i thing it helps always! Line number On/Off | Expand/Contract <!----------------PESQUISA POR Medico----------> <?php if(isset($_POST['submit']))...
|
|
|
|
Latest active threads on PHP - Code::
Started 1 day, 19 hours ago (2009-11-26 07:35:00)
by el_gato
Hai peregrino, to change one to any number of digit, you can use the following function: Line number On/Off | Expand/Contract function zeroExtend ( $s , $n ) { for ( $i = 0 ; $i < $n ; $i ++ ) { if ( strlen ( $s ) == $n ) return $s ; $s = "0" . $s ; } return $s ; } //ex: $num = ...
Started 20 hours, 10 minutes ago (2009-11-27 06:45:00)
by daedalus__
get_defined_vars() format with a pre block or something use the php reference next time! http://www.youtube.com/watch?v=qOlPAQ192V0
Started 4 days, 11 hours ago (2009-11-23 15:48:00)
by iankent
The_L wrote: how should i make it list only urls that begins with http://youtube.com/ and http://google.com/ (for example) i tried: even if your regex is correct (which I can't guarantee as I'm no regex expert!), you'll probably find most google/youtube links won't start http://google.com/ etc but will instead be http://www.google.com/ (or google.com.au, google.co.uk etc). You...
Started 1 day, 2 hours ago (2009-11-27 00:27:00)
by manojsemwal1
just use the following script $filename=$_FILES["file"]["name"]; $random_digit=rand(0000,9999); $newname = 'upload/'.$random_digit.$filename; $path = '../../ClientEntry/upload/'.$random_digit.$filenam e; //echo $path; $newpath= move_uploaded_file($_FILES["file"]["tmp_name"],$pa th);
Started 2 days ago (2009-11-26 02:00:00)
by cpetercarter
http://php.net/manual/en/function.preg-replace.php Note that with preg_replace() and other 'preg_...' functions, the regular expression needs to have a delimiter (normally /) at the beginning and the end.
Started 22 hours, 16 minutes ago (2009-11-27 04:39:00)
by daedalus__
http://lmgtfy.com/?q=target+parent+iframe
Started 1 day ago (2009-11-27 02:55:00)
by tasairis
. is an operator just like + * - and / - except it works on strings, not numbers. It adds two strings together: "asd" . "123" is the string "asd123". $x .= $y is shorthand for $x = $x . $y . One $x .= after another pieces $x together one part at a time. Line number On/Off | Expand/Contract $x = "abc" ; // $x starts off with "abc" $x .= "def" ; // add "def" $x .=...
Started 4 days, 9 hours ago (2009-11-23 17:14:00)
by iankent
Make sure your query is correct - I'd echo out the query and try running it manually via phpmyadmin/whatever to make sure it works and there's no errors. If it isn't working for any reason I'd expect it to die with mysql_error but might as well double check. Strictly speaking it should have a semi-colon to end the SQL query, and I wouldn't put quotes around the values if they're going into a ...
Started 1 day, 2 hours ago (2009-11-27 00:33:00)
by manojsemwal1
This is simple html page and save in .php ext so no error will be displayed if u use some more php script that time some php header sent type error occured that time u can use this php header file. regards,
Started 1 day, 2 hours ago (2009-11-27 00:19:00)
by manojsemwal1
use below script to come back ?> echo "<script>window.navigate('studycenterdetail.php')< /script>"; exit(); </script> <?php
|
|
Hot threads for last week on PHP - Code::
Started 4 days, 11 hours ago (2009-11-23 15:48:00)
by iankent
The_L wrote: how should i make it list only urls that begins with http://youtube.com/ and http://google.com/ (for example) i tried: even if your regex is correct (which I can't guarantee as I'm no regex expert!), you'll probably find most google/youtube links won't start http://google.com/ etc but will instead be http://www.google.com/ (or google.com.au, google.co.uk etc). You...
Started 1 week, 1 day ago (2009-11-19 08:10:00)
by iankent
koolsamule wrote: Hi Chaps, I have a Query that pulls data from 3 different job tables: Line number On/Off | Expand/Contract tbl_jobs - jobid (auto) primary key - jobinvsent (y,n) tbl_jobxml - jobid (auto) primary key - jobinvsent (y,n) tbl_jobtrans - jobid (auto) primary key - jobinvsent (y,n) I'm able to present the data in an HTML table, but what I need is the ...
Started 1 week, 1 day ago (2009-11-19 09:53:00)
by papa
_________________ http://craven-studio.com/ Always Confused
Started 1 week, 1 day ago (2009-11-19 17:17:00)
by faile486
Started 1 week, 2 days ago (2009-11-19 01:47:00)
by Weiry
There were a few problems which was causing it not to work. Your form contained no field named "submit" when you were checking for it on line 6 Line 6 was updated to: if(!isset($_POST ['submit'])) Line 31 was updated to: <input name="submit" type="submit" id="add" value="Submit"> Another point, you were using if statements without formatted statements inside. If you use a non { } if ...
Started 1 week, 1 day ago (2009-11-19 08:47:00)
by iankent
The image your linking to doesn't exist. You haven't given enough info for us to work out why though. What file is the img tag trying to retrieve? Does that file even exist? Where does that URL come from? Are the pictures actually being uploaded? etc. etc. etc. we can't really give you any help unless you give us a lot more info
Started 1 week, 1 day ago (2009-11-19 22:55:00)
by Jonah Bron
You should pay attention to error messages. Tell us what is reads. Try printing the value of $row right after you define it, too.
Started 1 day, 19 hours ago (2009-11-26 07:35:00)
by el_gato
Hai peregrino, to change one to any number of digit, you can use the following function: Line number On/Off | Expand/Contract function zeroExtend ( $s , $n ) { for ( $i = 0 ; $i < $n ; $i ++ ) { if ( strlen ( $s ) == $n ) return $s ; $s = "0" . $s ; } return $s ; } //ex: $num = ...
Started 4 days, 9 hours ago (2009-11-23 17:14:00)
by iankent
Make sure your query is correct - I'd echo out the query and try running it manually via phpmyadmin/whatever to make sure it works and there's no errors. If it isn't working for any reason I'd expect it to die with mysql_error but might as well double check. Strictly speaking it should have a semi-colon to end the SQL query, and I wouldn't put quotes around the values if they're going into a ...
Started 2 days, 2 hours ago (2009-11-26 00:41:00)
by tasairis
moussa854 wrote: it dos not display the feed: If you want help you'll have to be more descriptive than that.
|
|