The customer made a wild request: they want on their admin panel a
textarea that will display an existing resume.
This textarea, however, must have a dynamic width, one that "fills the
screen width of any sized screen". Sorry but I cannot fathom how to
do this!
How on earth do I do this? cols="???"
Is there either a client-side solution in HTML or Javascript, or will
I have to use a server-side solution in PHP? I'm completely stuck and
under a Monday AM deadline to come up with a solution.
Thanx
Phil
textarea that will display an existing resume.
This textarea, however, must have a dynamic width, one that "fills the
screen width of any sized screen". Sorry but I cannot fathom how to
do this!
Code:
<textarea name="resume" cols="108" rows="29" wrap="physical><?= $resume ?></textarea>
Is there either a client-side solution in HTML or Javascript, or will
I have to use a server-side solution in PHP? I'm completely stuck and
under a Monday AM deadline to come up with a solution.
Thanx
Phil
Comment