PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Autres forums > Forum Programmation & Conception > comp.lang.php > Fill in the blank
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
Fill in the blank

Réponse
 
LinkBack Outils de la discussion
Vieux 27/04/2008, 18h30   #1
Cosmic programmer
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Fill in the blank



How do I make a input text box appear like a fill in the blank line. i.e.

1. is it possible to hide some of its borders and display only the bottom
border?
2.to place is just above a sereies of underscore charactors and have it
borderless? (how)

any other way?

--
When you argue with a fool, chances are he's doing the same


  Réponse avec citation
Vieux 27/04/2008, 18h40   #2
Rik Wasmus
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

On Sun, 27 Apr 2008 19:30:39 +0200, Cosmic programmer
<not-my-email@nowhere.com> wrote:
> How do I make a input text box appear like a fill in the blank line. i.e.
>
> 1. is it possible to hide some of its borders and display only the bottom
> border?
> 2.to place is just above a sereies of underscore charactors and have it
> borderless? (how)


Ask in comp.infosystems.www.authoring.stylesheets, or just look into the
CSS specs. Nothing to do with PHP.
--
Rik Wasmus
  Réponse avec citation
Vieux 27/04/2008, 18h48   #3
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

Cosmic programmer wrote:
> How do I make a input text box appear like a fill in the blank line. i.e.
>
> 1. is it possible to hide some of its borders and display only the bottom
> border?
> 2.to place is just above a sereies of underscore charactors and have it
> borderless? (how)
>
> any other way?
>
> --
> When you argue with a fool, chances are he's doing the same
>
>
>


This has nothing to do with PHP.


--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

  Réponse avec citation
Vieux 27/04/2008, 20h51   #4
G&T
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

Jerry Stuckle wrote:

> Cosmic programmer wrote:
> > How do I make a input text box appear like a fill in the blank
> > line. i.e.
> >
> > 1. is it possible to hide some of its borders and display only the
> > bottom border? 2.to place is just above a sereies of underscore
> > charactors and have it borderless? (how)
> >
> > any other way?
> >
> > --
> > When you argue with a fool, chances are he's doing the same

>
> This has nothing to do with PHP.


I'm sure 'cosmic' is grateful for your ful answer, you retard

--

  Réponse avec citation
Vieux 27/04/2008, 23h15   #5
Preventer of Work
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

Cosmic programmer wrote:
> How do I make a input text box appear like a fill in the blank line. i.e.
>
> 1. is it possible to hide some of its borders and display only the bottom
> border?
> 2.to place is just above a sereies of underscore charactors and have it
> borderless? (how)
>
> any other way?
>
> --
> When you argue with a fool, chances are he's doing the same
>
>


Stuckle is right this time.
But what the heck. Try this:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Borderless Input</title>
<style type="text/css">
#nobbis {
border: 3px solid red;
border-top-style: none;
border-left-style: none;
border-right-style: none;
}
</style>
</head>
<body style="background-color: #dff;">
<form action="#" method="get">
<div>
<input id="nobbis" type="text" name="nobbis" value="Sample text" />
</div>
</form>
</body>
</html>
  Réponse avec citation
Vieux 28/04/2008, 01h02   #6
Twayne
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

> Cosmic programmer wrote:
>> How do I make a input text box appear like a fill in the blank line.
>> i.e. 1. is it possible to hide some of its borders and display only
>> the
>> bottom border?
>> 2.to place is just above a sereies of underscore charactors and have
>> it borderless? (how)
>>
>> any other way?
>>
>> --
>> When you argue with a fool, chances are he's doing the same
>>
>>
>>

>
> This has nothing to do with PHP.


You don't know that. You look more and more like a troller the more you
post lately.



  Réponse avec citation
Vieux 28/04/2008, 01h19   #7
G&T
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

Twayne wrote:

> > Cosmic programmer wrote:
> > > How do I make a input text box appear like a fill in the blank
> > > line. i.e. 1. is it possible to hide some of its borders and
> > > display only the bottom border?
> > > 2.to place is just above a sereies of underscore charactors and
> > > have it borderless? (how)
> > >
> > > any other way?
> > >
> > > --
> > > When you argue with a fool, chances are he's doing the same
> > >
> > >
> > >

> >
> > This has nothing to do with PHP.

>
> You don't know that. You look more and more like a troller the more
> you post lately.


Well I *hate* to say I told you so, but...

--

  Réponse avec citation
Vieux 28/04/2008, 01h44   #8
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

Twayne wrote:
>> Cosmic programmer wrote:
>>> How do I make a input text box appear like a fill in the blank line.
>>> i.e. 1. is it possible to hide some of its borders and display only
>>> the
>>> bottom border?
>>> 2.to place is just above a sereies of underscore charactors and have
>>> it borderless? (how)
>>>
>>> any other way?
>>>
>>> --
>>> When you argue with a fool, chances are he's doing the same
>>>
>>>
>>>

>> This has nothing to do with PHP.

>
> You don't know that. You look more and more like a troller the more you
> post lately.
>
>
>
>


Yes, I DO know that. PHP is server-side, and has nothing to do with how
the data is displayed. All of that is HTML or CSS - which should be
followed up in the appropriate newsgroups.

But if you knew ANYTHING - you would understand that.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

  Réponse avec citation
Vieux 28/04/2008, 02h45   #9
Cosmic programmer
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank


"Preventer of Work" <not_this@nospam.xxx> wrote in message
news:fW6Rj.97073$rd2.57317@pd7urf3no...
> Cosmic programmer wrote:
>> How do I make a input text box appear like a fill in the blank line. i.e.
>>
>> 1. is it possible to hide some of its borders and display only the bottom
>> border?
>> 2.to place is just above a sereies of underscore charactors and have it
>> borderless? (how)
>>
>> any other way?
>>
>> --
>> When you argue with a fool, chances are he's doing the same

>
> Stuckle is right this time.
> But what the heck. Try this:
>
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html>
> <head>
> <title>Borderless Input</title>
> <style type="text/css">
> #nobbis {
> border: 3px solid red;
> border-top-style: none;
> border-left-style: none;
> border-right-style: none;
> }
> </style>
> </head>
> <body style="background-color: #dff;">
> <form action="#" method="get">
> <div>
> <input id="nobbis" type="text" name="nobbis" value="Sample text" />
> </div>
> </form>
> </body>
> </html>


Thanks really!

I'm working on a PHP project so added this group. will be carefull next
time.



  Réponse avec citation
Vieux 28/04/2008, 10h45   #10
The Natural Philosopher
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

Preventer of Work wrote:
> Cosmic programmer wrote:
>> How do I make a input text box appear like a fill in the blank line. i.e.
>>
>> 1. is it possible to hide some of its borders and display only the
>> bottom border?
>> 2.to place is just above a sereies of underscore charactors and have
>> it borderless? (how)
>>
>> any other way?
>>
>> --
>> When you argue with a fool, chances are he's doing the same
>>

>
> Stuckle is right this time.


Right, but pedantically unful.

And not right to act like its HIS NG.


> But what the heck. Try this:
>
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html>
> <head>
> <title>Borderless Input</title>
> <style type="text/css">
> #nobbis {
> border: 3px solid red;
> border-top-style: none;
> border-left-style: none;
> border-right-style: none;
> }
> </style>
> </head>
> <body style="background-color: #dff;">
> <form action="#" method="get">
> <div>
> <input id="nobbis" type="text" name="nobbis" value="Sample text" />
> </div>
> </form>
> </body>
> </html>

  Réponse avec citation
Vieux 28/04/2008, 15h55   #11
Twayne
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

> Twayne wrote:
>>> Cosmic programmer wrote:
>>>> How do I make a input text box appear like a fill in the blank
>>>> line. i.e. 1. is it possible to hide some of its borders and
>>>> display only the
>>>> bottom border?
>>>> 2.to place is just above a sereies of underscore charactors and
>>>> have it borderless? (how)
>>>>
>>>> any other way?
>>>>
>>>> --
>>>> When you argue with a fool, chances are he's doing the same
>>>>
>>>>
>>>>
>>> This has nothing to do with PHP.

>>
>> You don't know that. You look more and more like a troller the more
>> you post lately.
>>
>>
>>
>>

>
> Yes, I DO know that. PHP is server-side, and has nothing to do with
> how the data is displayed. All of that is HTML or CSS - which should
> be followed up in the appropriate newsgroups.
>
> But if you knew ANYTHING - you would understand that.


No, you're obviously being myopic, maybe on purpose. PHP is executed
server-side, but ... it can be written/implemented by either side,
depending. When PHP executes, I can only wonder where you think its
output may go.
--
Regards,

Twayne

Open Office isn't just for wimps anymore;
OOo is a GREAT MS Office replacement
www.openoffice.org



  Réponse avec citation
Vieux 28/04/2008, 16h52   #12
Jerry Stuckle
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

Twayne wrote:
>> Twayne wrote:
>>>> Cosmic programmer wrote:
>>>>> How do I make a input text box appear like a fill in the blank
>>>>> line. i.e. 1. is it possible to hide some of its borders and
>>>>> display only the
>>>>> bottom border?
>>>>> 2.to place is just above a sereies of underscore charactors and
>>>>> have it borderless? (how)
>>>>>
>>>>> any other way?
>>>>>
>>>>> --
>>>>> When you argue with a fool, chances are he's doing the same
>>>>>
>>>>>
>>>>>
>>>> This has nothing to do with PHP.
>>> You don't know that. You look more and more like a troller the more
>>> you post lately.
>>>
>>>
>>>
>>>

>> Yes, I DO know that. PHP is server-side, and has nothing to do with
>> how the data is displayed. All of that is HTML or CSS - which should
>> be followed up in the appropriate newsgroups.
>>
>> But if you knew ANYTHING - you would understand that.

>
> No, you're obviously being myopic, maybe on purpose. PHP is executed
> server-side, but ... it can be written/implemented by either side,
> depending. When PHP executes, I can only wonder where you think its
> output may go.


No, you're being asinine. PHP doesn't create the text box in the
browser, (X)HTML and CSS does. All PHP *might* do is echo the statements.

PHP running on the server cannot affect how the text box looks in the
browser - other than generating the proper (X)HTML and CSS. And PHP
does not run on the client's browser.


--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

  Réponse avec citation
Vieux 01/05/2008, 23h01   #13
M. Strobel
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Fill in the blank

Twayne schrieb:
>> Twayne wrote:
>>>> Cosmic programmer wrote:
>>>>> How do I make a input text box appear like a fill in the blank
>>>>> line. i.e. 1. is it possible to hide some of its borders and
>>>>> display only the
>>>>> bottom border?
>>>>> 2.to place is just above a sereies of underscore charactors and
>>>>> have it borderless? (how)
>>>>>
>>>>> any other way?
>>>>>
>>>>> --
>>>>> When you argue with a fool, chances are he's doing the same
>>>>>
>>>>>
>>>>>
>>>> This has nothing to do with PHP.
>>> You don't know that. You look more and more like a troller the more
>>> you post lately.
>>>
>>>
>>>
>>>

>> Yes, I DO know that. PHP is server-side, and has nothing to do with
>> how the data is displayed. All of that is HTML or CSS - which should
>> be followed up in the appropriate newsgroups.
>>
>> But if you knew ANYTHING - you would understand that.

>
> No, you're obviously being myopic, maybe on purpose. PHP is executed
> server-side, but ... it can be written/implemented by either side,
> depending. When PHP executes, I can only wonder where you think its
> output may go.


This is nonsense.

Of course how an input field displays is a HTML and CSS question.

  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 22h58.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,22286 seconds with 21 queries