[PHP] snippets google plus with wordpress

2011-11-28 Thread ml
Hello list hello php hello bearded I just finished partially implement the google snippets about wordpress I say partially Indeed j arrives to recover as the author and date No I can not seem to recover to recover the image and description of the subject Here is the code that uses the j page

[PHP] PHP and getting part of URL

2008-10-07 Thread Jason ML
Hi PHP'ers, PHP 4.4.8 and 5. say I have a url like: http://www.mydomain.tld/jason/index.php In that index.php I want to have a piece of code that runs that tells me the 'jason' part of the URL so that I can run some custom read only queries for 'jason' How can I do this? I know how to

Re: [PHP] PHP and getting part of URL

2008-10-07 Thread Jason ML
Hi Micah, dirname($_SERVER['REQUEST_URI']); I have tried that and I dont get the proper URI: Example running print_r($_SERVER); I get: [REQUEST_URI] = /net1003/ people/jason/ But then doing: $jason = dirname($_SERVER['REQUEST_URI']); echo URL: ;

Re: [PHP] PHP and getting part of URL

2008-10-07 Thread Jason ML
Daniel, I get: URL: /net1003/people Thoughts on what I am doing wrong. Yeah. Not R'ing TFM. dirname() gives you the name of the directory ABOVE what you pass. http://php.net/dirname Thanks for the pointer. You are indeed correct. -Jason -- PHP General Mailing List

Re: [PHP] PHP5 TUTORIAL

2007-06-26 Thread php-ml
Hi Preethi Kindly suggest me the good online tutorial for PHP5. Am already working on php4. Need to migrate from php4 to php5. i think this is very important for OOP: http://www.php.net/manual/en/language.oop5.php and this one: http://www.php.net/manual/en/language.exceptions.php

Re: [PHP] reading txt file - certain lines

2004-07-29 Thread Miroslav Hudak (php/ml)
Everything is possible :) And in this case, it seems, that lines are delimited by br ... i'm not quite sure, whether br can be used in explode as a delimiter, if so, you have no problem and you just read all the file into variable, $lines = explode('br', $variable) and you have lines in

Re: [PHP] URGENT: Space char in rewriterule

2004-07-27 Thread Miroslav Hudak (php/ml)
I think, the point, Curt wanted to point out was, that URI CAN NOT contain SPACE character and all SPACE characters (ord 32) are converted to %20 ... thus, space character in rewrite rule will lead to bogus URI... thus, browser will send %20 instead and... dunno if apache will convert it to

Re: [PHP] Question about for

2004-07-25 Thread Miroslav Hudak (php/ml)
?php for ($x = 0; $x 10; $x += 2) echo $x.','; ? m. Henri Marc wrote: Hello, I woudlike to use a loop: for ($i=1;$i11;$i++) But instead of incrementing with 1, I would like to increment by 2. So $i would be 1,3,5,7,9. I tried to find the answer may be with step but couldn't find

Re: [PHP] editor for remote files using ssh

2004-07-24 Thread Miroslav Hudak (php/ml)
Vi or ViM :) m. Peter Risdon wrote: I have been using emacs/tramp for editing files on remote machines, but I find it can be flaky - no doubt I am doing something wrong. Can anyone suggest a good programmers' text editor that at least has syntax highlighting and can use ssh for accessing files

Re: [PHP] php and images

2004-07-23 Thread Miroslav Hudak (php/ml)
I have a certain difficulties in case of processing large images thru GD2 library. GD2 has some problems with image processing and it results in some exception and GD just crashes. I have to mention, that the crash causes whole php interpreter to crash and execution of the script is terminated

Re: [PHP] Can't install PHP on Windows/Apache

2004-07-20 Thread Miroslav Hudak (php/ml)
Have you added the line with the hash mark (#) ??? if so, then it's commented out... that's the first point. The second one is, that when using Apache 2.0.50, you should use php4apache2 module instead (I'm not ABSOLUTELLY sure of it, while for a longer time using PHP5, but I hope, that

Re: [PHP] unlink(), is it suppose to delete file???

2004-07-20 Thread Miroslav Hudak (php/ml)
This could happpen when the file is open by another process,... then file is deleted, but filename is still there until the file is not free of any open filedescriptors... I don't know exactly what processes happens in kernel when deleting the file, but it's something like that... and it could

Re: [PHP] OT but need guidance in timing page views

2004-07-19 Thread Miroslav Hudak (php/ml)
I would do it this way: - open the page and create hidden iframe (or frame with 0% width/height) which will be refreshing itself every ... let's say ... 2 minutes... then you'll get up to 2 minutes accurate numbers... the refreshed page would write timestamp to database every refresh... when

Re: [PHP] OT but need guidance in timing page views

2004-07-19 Thread Miroslav Hudak (php/ml)
Hi! This is what you need :) You have hidden frame (FRAME not layer!!!) (it means FRAME src=check.php height=0 [noborders etc])... then in check.php would be something like this: $id = $myid; //myid will be stored in session after user logs in Connect to database, pair ID with a row in table and

Re: [PHP] HTML and PHP output to PHP variable

2004-07-12 Thread Miroslav Hudak (php/ml)
hello! use output buffering... ?php ob_start(); //... your code here $_contents = ob_get_contents(); ob_end_clean(); ? regards, m. Maris wrote: Hi! Let's say my index.php consists of the following: ? include(header.inc); echo pPHP says Hello World/p; ? pHTML says Hello World/p ? //..

Re: [PHP] Re: [Q] Why does my php file gets displayed instead of executed

2004-07-11 Thread Miroslav Hudak (php/ml)
this all seems just fine to me, aren't you sending some Header: Content-type -s? could you post that init.php script source? and is that apache server working well for other scripts that are called from the forms? AND ... just to be sure,... are you calling that html which contains the form

Re: [PHP] parse error: [PHP] usort e é together

2004-07-11 Thread Miroslav Hudak (php/ml)
Dunno the original question, but this obviously should be escaped... So the correct code follows... usort($authors, create_function('$a,$b',' $a = str_replace(array(\'é\', \'a\'), array(\'e\', \'a\'), $a); $b = str_replace(array(\'é\', \'a\'), array(\'e\', \'a\'), $b); return

Re: [PHP] usort e é together

2004-07-11 Thread Miroslav Hudak (php/ml)
this is slightly changed function of yours, written for better readability... ?php $authors = array('élen', 'Élen', 'Elison', 'ámadeus', 'albert', 'alfred', 'amadeus', 'elen'); function usort_callback($a, $b) { $a = strtolower($a); $b = strtolower($b); $a = str_replace(array('á', 'é'),

Re: [PHP] usort e é together

2004-07-11 Thread Miroslav Hudak (php/ml)
Pardon me for the strtolower line, i've just forgot there... it's 4:30AM here in Slovakia... :/ correct listing follows... ?php $authors = array('élen', 'Élen', 'Elison', 'ámadeus', 'albert', 'alfred', 'amadeus', 'elen'); function usort_callback($a, $b) { $a = str_replace(array('á', 'é'),

[PHP] Mkdir() and fdopen()

2003-03-05 Thread ML
When trying to create files/directories with PHP, in terms of the system, who would be the user actually performing those actions? Would it be the nobody user which runs the apache web daemons? I am trying to figure out a safe way to make files writeable, but hopefully chown-ing those files/dirs

[PHP] mail function works, but always from nobody@localhost!

2003-03-03 Thread ML
How exactly would I go about fixing my current php/sendmail setup so that it uses the value specified in my php input form in the from box instead of always setting the email from address as : [EMAIL PROTECTED] ??? Any help would be greatly appreciated. Thanks! -- PHP General Mailing List

[PHP] Mysql DB connect failure

2003-02-21 Thread ML
Currently I have some php code that displays a message if a connect to my database fails. Is there anyway I can get a more descriptive error message? So I can see exactly why my php can't connect to the Database? I am pretty sure that the username and password are correct and the username exists

[PHP] Re: Mysql DB connect failure

2003-02-21 Thread ML
/body); Hans Prins [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... did you try: print mysql_error(); Ml [EMAIL PROTECTED] schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Currently I have some php code that displays a message if

Re: [PHP] Re: Mysql DB connect failure

2003-02-21 Thread ML
You were right Prins, I got the error: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) So I guess I need to investigate what this means now... Thanks! -ML Hans Prins [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Would

Re: [PHP] Re: Mysql DB connect failure

2003-02-21 Thread ML
ou want to use it. Hope that clears things up a bit. Regards, Jason k Larson Hans Prins wrote: did you try: print mysql_error(); Ml [EMAIL PROTECTED] schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... -- PHP General Mailing

Re: [PHP] Re: Mysql DB connect failure

2003-02-21 Thread ML
Thanks rick, that is a much cleaner solution! Rick Emery [EMAIL PROTECTED] wrote in message 009f01c2d9c1$51171d20$0500a8c0@honeybee">news:009f01c2d9c1$51171d20$0500a8c0@honeybee... $db = mysql_pconnect(localhost, test1, test1) or die(mysql_error()); - Original Message -

[PHP] Mail Sending Error

2003-02-21 Thread ML
) it failed and I wanted to know how I can get a more descriptive error from the failure of this function... any ideas? Thanks again, I really appreciate the help. -ML -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mail function fails with no error code

2003-02-21 Thread ML
I am unable to send emails, and there are no errors being generated or populated in the $php_errormsg variable, since I enabled track errors in the php.ini. So I have no idea why the mail send is failing. Am I supposed to specify a mail server to use for sending mail? My sendmail was setup

[PHP] missing simple php functionality

2003-02-20 Thread ML
Hello all. Im having a strange problem. My php outputs html correctly, and Ive tried other builtin functions like date and that works too. But when I try to do something as simple as passing a value from a form to a php file and display that value, no go. the HTML: html body h1Enter

Re[2]: [PHP] Error 155 using exec - please help !

2002-12-17 Thread ml
Take a look at http://cvs.php.net/co.php/php4/php.ini-dist The part that should you look at is Resource Limits (max_execution_time,memory_limit) and set up your php.ini accordingly. Nope i can't find any solution... It goes well with memory_limit=8M for a 12Ko file, but won't work for a 32K

[PHP] Error 155 using exec

2002-12-16 Thread ml
Here is what i do to parse a file with a perl script from PHP to get a formatted output from the file : error_reporting(E_ALL); $cmd=/pathto/dump.pl \.$HTTP_POST_VARS[filename].\ 21; $res=exec($cmd,$tab,$err); With small files all goes fine, but when parsing a big file i get the 155 error code

[PHP] Error 155 using exec

2002-12-16 Thread ml
Here is what i do to parse a file with a perl script from PHP to get a formatted output from the file : error_reporting(E_ALL); $cmd=/pathto/dump.pl \.$HTTP_POST_VARS[filename].\ 21; $res=exec($cmd,$tab,$err); With small files all goes fine, but when parsing a big file i get the 155 error code

[PHP] Error 155 using exec - please help !

2002-12-16 Thread ml
Here is what i do to parse a file with a perl script from PHP to get a formatted output from the file : error_reporting(E_ALL); $cmd=/pathto/dump.pl \.$HTTP_POST_VARS[filename].\ 21; $res=exec($cmd,$tab,$err); With small files all goes fine, but when parsing a big file i get the 155 error code

[PHP] htmlentities

2002-04-06 Thread Joerg Hanke [ML-php]
hi! i've got the following problem and hope one of you is able to help me solving that: i've got a system in php that writes data (e.g. variable-name = $data) to a mysql database. there are two more scripts: one for displaying the data and one for writing the data into a formular. the

[PHP] redirector

2002-04-06 Thread Joerg Hanke [ML-php]
hi, i've got the possibility to create alias subdomains, which redirect all to the document-root... e.g.: http://adam.domain.com redirects to http://domain.com i want to redirect the users who access http://adam.domain.com to http://domain.com/home/adam how to do this best in php??

RE: [PHP] Getting uploaded filename directory

2001-11-12 Thread Luboslav Gabal ml.
In setting up a form to allow a user to upload a file, upon submission of that form, you can get the actual file name that is being uploaded by accessing the variable: $userfile_name (assuming the form element's name where the user specifies the file is $userfile). Is there a way to

[PHP] closing persistance connection

2001-09-20 Thread Luboslav Gabal ml.
How to close persistance connection to MySQL server ? Luboslav Gabal -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] Help with database queries

2001-09-17 Thread Luboslav Gabal ml.
Hi, need some help with the code below. I am thinking of reusing this for building a thumbnail gallery from a database. First, is the code actually good? Do i do something that will slow down the responses? Second, can anyone help me with a code sample to implement that will limit how

RE: [PHP] NEED HELP: select box repeat

2001-09-17 Thread Luboslav Gabal ml.
OK I am trying to write a script that will bring data out of a database into a select box. But what I need it to do is repeat 5 times or more depending on what it brings out. I can only get it to display one select box. Here is what I got so far: ?php require 'common.inc'; // Connect to

RE: [PHP] Help with database queries

2001-09-17 Thread Luboslav Gabal ml.
- Pôvodná správa - Od: Luboslav Gabal ml. [EMAIL PROTECTED] Komu: Daniel Alsén [EMAIL PROTECTED]; PHP [EMAIL PROTECTED] Odoslané: 17. zárí 2001 23:39 Predmet: RE: [PHP] Help with database queries Hi, need some help with the code below. I am thinking of reusing this for building

[PHP] problem with getting data from NNTP server

2001-09-16 Thread Luboslav Gabal ml.
I have script for getting header of article from NNTP server using sockets: ? $conn = fsockopen("csnews.vslib.cz", 119); fputs($conn, "GROUP cz.comp.lang.php\r\n"); fputs($conn, "HEAD 3600\r\n"); while ($result = fgets($conn, 2048)) { if (substr($result, 0, 1) == ".") break; echo $result."br";

RE: [PHP] Comining variables into a single string

2001-09-16 Thread Luboslav Gabal ml.
Greetings to All: I'm inexperienced, although enthusiastic about using PHP. I want to write data more effectively to a file. This doesn't work: fputs($frank, Testing $whatever more testing \n\n\n); Right now, all I know is using three separate fputs statements. I'd like to use just