Re: [PHP] Formatting an ECHO statement.

2010-10-19 Thread Shreyas Agasthya
Thanks for that detailed mail, Admin. The i was an example and I wanted to
understand how does one go about the whole formatting. Nonetheless, I am
pretty well informed after this thread.

Thanks once again, everyone.

Regards,
Shreyas

On Tue, Oct 19, 2010 at 10:09 AM, Paul M Foster pa...@quillandmouse.comwrote:

 On Mon, Oct 18, 2010 at 10:46:41PM -0400, Cris S wrote:

  At 15:12 18 10 10, Shreyas Agasthya wrote:
  Thanks all for their input. Some of the learnings  from the thread :
  
  1. i tag is getting deprecated.
 
  Not in HTML5.
 
  2. Use em and strong
 
  Both? Read that shit again, buckwheat. And by that shit I
  do mean the standards, not what Joe Bloe told you.
 
  3. Have CSS used to do the kind of stuff I was trying.
 
  Uhm, yeah. @@
 
   I must inform, this was already in place.
 
  Then why the fuck are we discussing this?
 
  4. Keep an eye on the SE monster.
 
  and on the go fuck yourself monster too.
 
  Holy fuck, I've been lurking for months. I turn away for
  one day and this is the non-PHP crap that happens?

 Please go back to lurking. We'd all appreciate it, and you'll be
 happier.

 Paul

 --
 Paul M. Foster

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




-- 
Regards,
Shreyas Agasthya


Re: [PHP] Formatting an ECHO statement.

2010-10-19 Thread a...@ashleysheridan.co.uk
Steady on now, this thread started as a php question, and has only deviated a 
little. Most people on the list don't work purely with php, and I for one dont 
mind the odd off-topic thread, especially when the majority of the list is made 
of good php threads.

Thanks,
Ash
http://www.ashleysheridan.co.uk

- Reply message -
From: Cris S ssski...@gmail.com
Date: Tue, Oct 19, 2010 03:46
Subject: [PHP] Formatting an ECHO statement.
To: php-general@lists.php.net

At 15:12 18 10 10, Shreyas Agasthya wrote:
Thanks all for their input. Some of the learnings  from the thread :

1. i tag is getting deprecated.

Not in HTML5.

2. Use em and strong

Both? Read that shit again, buckwheat. And by that shit I
do mean the standards, not what Joe Bloe told you.

3. Have CSS used to do the kind of stuff I was trying.

Uhm, yeah. @@

  I must inform, this was already in place.

Then why the fuck are we discussing this?

4. Keep an eye on the SE monster.

and on the go fuck yourself monster too.

Holy fuck, I've been lurking for months. I turn away for
one day and this is the non-PHP crap that happens?

Someone needs to hire me now, to keep me busy and stop me
from taking this issue apart one piece at a time. Kee-rist.



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



Re: [PHP] Formatting an ECHO statement.

2010-10-19 Thread tedd

At 12:39 AM -0400 10/19/10, Paul M Foster wrote:

On Mon, Oct 18, 2010 at 10:46:41PM -0400, Cris S wrote:

-snip- (of no importance)

Please go back to lurking. We'd all appreciate it, and you'll be
happier.

Paul

--
Paul M. Foster


I agree with Paul on this one.

Chris S has no idea of what we are talking about or what he is saying.

PHP does not encompass all of web programming and part of learning 
PHP programming is to know where the boundaries are.


Intermixing style elements and PHP is the topic of this thread. 
Determining what is the best practice in this aspect is what we are 
addressing.


Cheers,

tedd

--
---
http://sperling.com/

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



RE: [PHP] Formatting an ECHO statement.

2010-10-19 Thread Bob McConnell
From: Cris S

 Someone needs to hire me now, to keep me busy and stop me
 from taking this issue apart one piece at a time. Kee-rist.

That's not likely to happen soon. You have demonstrated here that you
are immature and have very little self-control or self-respect. There is
no way you would be hired for any shop that I have ever worked in.

Bob McConnell

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



RE: [PHP] Formatting an ECHO statement.

2010-10-18 Thread Ford, Mike
 -Original Message-
 From: Shreyas Agasthya [mailto:shreya...@gmail.com]
 Sent: 18 October 2010 11:10
 
 A bit of silly one but like my book says, there are no dumb
 questions, I am
 asking it here.
 
 If I have :
 
 $other=Whatever;
 
 and I do:
 
 echo 'Other Comments:' .$other. 'br/
 
 works perfectly well and prints the value. What if I want to, now,
 italicize
 the value of $other with the above syntax? How do I achieve it?

   echo 'Other Comments:i' .$other. '/ibr/

Cheers!

Mike

 -- 
Mike Ford,
Electronic Information Developer, Libraries and Learning Innovation,  
Leeds Metropolitan University, C507 City Campus, 
Woodhouse Lane, LEEDS,  LS1 3HE,  United Kingdom 
Email: m.f...@leedsmet.ac.uk 
Tel: +44 113 812 4730





To view the terms under which this email is distributed, please go to 
http://disclaimer.leedsmet.ac.uk/email.htm

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



Re: [PHP] Formatting an ECHO statement.

2010-10-18 Thread tedd

At 9:47 AM -0400 10/18/10, Steve Staples wrote:

or create a style sheet, with a class definition for italic.

Steve.



+1

The best practices way to do it.

Don't style output in an echo statement, but rather put styling in a 
css sheet, It's much cleaner there.


Cheers,

tedd

--
---
http://sperling.com/

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



Re: [PHP] Formatting an ECHO statement.

2010-10-18 Thread Cris S

At 13:03 18 10 10, a...@ashleysheridan.co.uk wrote:
There's nothing wrong with using em as it indicates emphasised 
text, which is semantic. Use span tags with classes only when the 
content you're styling has no semantic alternative. 
strongimportant message/strong is much better for machines 
(including search engines, screen readers, etc) to infer a meaning 
for than span class=bold_textimportant message/span Thanks, 
Ash http://www.ashleysheridan.co.uk - Reply message - From: 
tedd tedd.sperl...@gmail.com Date: Mon, Oct 18, 2010 17:51 
Subject: [PHP] Formatting an ECHO statement. To: 
php-general@lists.php.net At 9:47 AM -0400 10/18/10, Steve Staples 
wrote: or create a style sheet, with a class definition for 
italic.  Steve. +1 The best practices way to do it. Don't style 
output in an echo statement, but rather put styling in a css sheet, 
It's much cleaner there. Cheers, tedd -- --- 
http://sperling.com/ -- PHP General Mailing List 
(http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Jesus H. Christ.

I'm on this list because I want to learn PHP, not how to parse
HTML mail or how to add italics to doltstupid text/dolt.

You add styles to text as a presentation effect. This list is
not supposed to be about the effing presentation.

Must I say it again, more rudely even? I know you guys like
to go on and on, but give it a rest on this one. Get your
asses back on topic - and on topical jokes. This topic is
neither.

Move on already.




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



Re: [PHP] Formatting an ECHO statement.

2010-10-18 Thread Cris S

At 15:12 18 10 10, Shreyas Agasthya wrote:

Thanks all for their input. Some of the learnings  from the thread :

1. i tag is getting deprecated.


Not in HTML5.


2. Use em and strong


Both? Read that shit again, buckwheat. And by that shit I
do mean the standards, not what Joe Bloe told you.


3. Have CSS used to do the kind of stuff I was trying.


Uhm, yeah. @@


 I must inform, this was already in place.


Then why the fuck are we discussing this?


4. Keep an eye on the SE monster.


and on the go fuck yourself monster too.

Holy fuck, I've been lurking for months. I turn away for
one day and this is the non-PHP crap that happens?

Someone needs to hire me now, to keep me busy and stop me
from taking this issue apart one piece at a time. Kee-rist.



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



Re: [PHP] Formatting an ECHO statement.

2010-10-18 Thread Paul M Foster
On Mon, Oct 18, 2010 at 10:46:41PM -0400, Cris S wrote:

 At 15:12 18 10 10, Shreyas Agasthya wrote:
 Thanks all for their input. Some of the learnings  from the thread :
 
 1. i tag is getting deprecated.
 
 Not in HTML5.
 
 2. Use em and strong
 
 Both? Read that shit again, buckwheat. And by that shit I
 do mean the standards, not what Joe Bloe told you.
 
 3. Have CSS used to do the kind of stuff I was trying.
 
 Uhm, yeah. @@
 
  I must inform, this was already in place.
 
 Then why the fuck are we discussing this?
 
 4. Keep an eye on the SE monster.
 
 and on the go fuck yourself monster too.
 
 Holy fuck, I've been lurking for months. I turn away for
 one day and this is the non-PHP crap that happens?

Please go back to lurking. We'd all appreciate it, and you'll be
happier.

Paul

-- 
Paul M. Foster

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