Wrox Programmer Forums
Go Back   Wrox Programmer Forums > PHP/MySQL > Beginning PHP
|
Beginning PHP Beginning-level PHP discussions. More advanced coders should post to the Pro PHP forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Beginning PHP section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old February 26th, 2014, 10:21 AM
Registered User
 
Join Date: Feb 2014
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Default Image selected using input type=files

Hy,
I'm creating cms, and I upload my picture to my folder successfully, i want to select picture from files on server using <input type="file"> and that selected value ti put in <input type="text" name="image" value="">.
How can i do that.


This is my form code:

<form action="index.php?content=categories" method="post" name="maint" enctype="multipart/form-data">
<fieldset class="maintform">
<legend>Change</legend>
<ul>
<li>
<label class="required">Category</label><br>
<input type="text" name="cat_name" class="required" value="<?php echo htmlspecialchars( $item->getCat_name()); ?>">

</li>

<li>
<label>Descrioption</label><br>
<textarea rows="5" cols="60" name="cat_description"><?php echo htmlspecialchars($item->getCat_description()); ?></textarea>
</li>

<li>
<label>Image</label><br>

<input type="text" name="cat_image" value="<?php echo htmlspecialchars( $item->getCat_image());?>">
<input type="text" name="image" value="">

</li>

</ul>





Similar Threads
Thread Thread Starter Forum Replies Last Post
input type="image" tgopal Javascript How-To 1 September 22nd, 2005 05:16 AM
input type="image" tgopal Javascript 1 September 22nd, 2005 05:15 AM
Problem with input type image With Anchor tag vinkumrect Javascript How-To 1 July 21st, 2005 08:59 AM
problem with input type="image" nerssi Javascript 6 September 14th, 2004 03:31 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.