Re: [PHP-DB] Re: curl

2007-03-07 Thread datsclark
The code works with that link, although I wasn't able to immediately 
download the file. I'm not sure whats up, but it isn't segfaulting.

I'm on PHP5.2.0 with  libcurl/7.14.0 OpenSSL/0.9.8d zlib/1.2.3

( Not sure what's up with the RBL, email here is a little screwy. )


Ron Croonenberg [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 Hi,

 what version of php and curl are you using ?

 does your code work (without getting a segmentation fault) for this
  link : https://doc.telin.nl/dscgi/ds.py/Get/File-29224  ?

 this is the code I am trying to use:

$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, $url2);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
$lines = array();
$lines = explode(\n, $file_contents);


 Ron

 btw:  I had to resend the msg because:
- The following addresses had permanent fatal errors -
 [EMAIL PROTECTED]
 (reason: 550 Denied as you are on an RBL)


 uuuhhm   what is RBL ?  and why am I on it ?

 Ron




 datsclark wrote:
 I found this class in the PHP documentation, and edited it a bit.  It 
 works for me, getting the header and the body separately.   You may want 
 to experiment with the html string position to cut the curl response 
 up with.

 class CCurl {
  var $m_handle;
  var $m_header;
  var $m_body;
  var $m_info;

  function CCurl($sUrl) {
   $this-m_handle = curl_init();
   curl_setopt($this-m_handle, CURLOPT_URL, $sUrl);
   return;
  }

  function setOpt($sOpt, $sVal) {
   curl_setopt($this-m_handle, $sOpt, $sVal);
   return;
  }

  function getHeader() {
   return $this-m_header;
  }

  function execute() {
   $sResponse = curl_exec($this-m_handle);
   $this-m_body = substr($sResponse, strpos($sResponse, html));
   $this-m_header = substr($sResponse, 0, -strlen($this-m_body));
   return $this-m_body;
  }

  function getInfo() {
   return $this-m_info = curl_getinfo($this-m_handle);
  }
  function close() {
   curl_close($this-m_handle);
   return;
  }
 }

 Ron Croonenberg [EMAIL PROTECTED] wrote in message 
 news:[EMAIL PROTECTED]
 Hello,

 I am working on an app with php and MySQL  but I have a curl question if
 you don't mind.

 I need to check a url (from the db)  but I want the get  the header info
 first.  now what i want is exactly what curl -I http://; 
 outputs.

 I am trying to write a php script that produces the same output, but it
 seems to break (that pesky segment fault again)

 any ideas ?

 thanks,

 Ron




 -- 
 =
 It's is not, it isn't ain't, and it's it's, not its, if you mean
 it is. If you don't, it's its. Then too, it's hers. It isn't
 her's. It isn't our's either. It's ours, and likewise yours and
 theirs.
  -- Oxford Uni Press
 =
 Ron Croonenberg   |
   | Phone: 1 765 658 4761
 Lab Instructor   | Fax:   1 765 658 4732
 Technology Coordinator|
   |
 Department of Computer Science| e-mail: [EMAIL PROTECTED]
 DePauw University |
 275 Julian Science  Math Center  |
 602 South College Ave.|
 Greencastle, IN  46135|
 =
 http://www.csc.depauw.edu/RonCroonenberg.html
 =


 -- 
 =
  It's is not, it isn't ain't, and it's it's, not its, if you mean
  it is. If you don't, it's its. Then too, it's hers. It isn't
  her's. It isn't our's either. It's ours, and likewise yours and
  theirs.
   -- Oxford Uni Press
 =
  Ron Croonenberg   |
| Phone: 1 765 658 4761
  Lab Instructor   | Fax:   1 765 658 4732
  Technology Coordinator|
|
  Department of Computer Science| e-mail: [EMAIL PROTECTED]
  DePauw University |
  275 Julian Science  Math Center  |
  602 South College Ave.|
  Greencastle, IN  46135|
 =
  http://www.csc.depauw.edu/RonCroonenberg.html
 = 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DB] Re: Creating a Table to line query results in php?

2007-03-01 Thread datsclark
You could also just use CSS.  Make each column in a div and line them up 
that way.  Might not be as simple as a table right off-the-bat, but if you 
have to make any changes later, its often easier.

A quick google search shows tons of tutorials on tables in css. 
http://css.nu/articles/table-in-css.html


Scott [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
 Hi everyone!

 How can I create a table...or even something similar...to line information 
 up?

 The information is coming from an mysql database and there are 5
 columns of data.

 Of course I am using php to call the data out of the database.

 A simple example:

 while ($data = mysql_fetch_array($res))
 {
 $idfield = $data['IDFIELD'];
 $name = $data['Name'];
 $effect = $data['Effect'];
 $category = $data['Category'];
 $origin = $data['Origin'];
 $image = $data['Image'];

 echo img src=\image/$image\, $name, $effect, $category, $originbr;
 }

 The echo is the stuff I want to line up under the headings of the
 columns when they are displayed.

 So there are 5 headers and under the 5 headers is the resulting
 display of info and I want it lined up, centered, under the headers.

 Does that all make sense?

 Thanks for all of your time!

 S 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php