Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kusarigama
  • Content: Threads
  • Order by date
  1. kusarigama

    sorting a HTML drop down menu array alphabetic

    Hi all, is there a way to sort a HTML Drop down list array alphabetic ? I tried the following, but it doesn't work ! Can anyone help me ? Olli <select name=&quot;position[]&quot;> <option value=&quot;Artist&quot;<?=$aa;?>>Artist</option> <option...
  2. kusarigama

    hidden form field

    Hi all, is there a way to output hidden form fields on the first submit: I need it to output error messages on the top of my script! <form action=<?=$_SERVER['PHP_SELF'];?> method=post> <input type=hidden name=collect value=<?=$_POST['collect']?>> <?PHP echo $_POST['collect']; ?> <...
  3. kusarigama

    empty $_POST array

    Oops - I forgot to put in the subject ... Hi all, I'm storing contents of a textfile in the array 'emails[]' and try to output $_POST['emails']; The array emails is empty and I don't know what I did wrong Can anyone help me ? $i=0; while(!feof($fp)) { $emails = fgets($fp,620) <input...
  4. kusarigama

    Hi all, I'm storing contents of

    Hi all, I'm storing contents of a textfile in the array 'emails[]' and try to output $_POST['emails']; The array emails is empty and I don't know what I did wrong Can anyone help me ? $i=0; while(!feof($fp)) { $emails = fgets($fp,620) <input type=checkbox name=emails[] value=$i> $i++; }...
  5. kusarigama

    Hi all, I have a problem concer

    Hi all, I have a problem concerning the $_POST array. In my script I display checkboxes as much emails my textfiles contains. It's normaly stored in the $_POST array. Now I make a mark on the email's checkboxes to output - and it doesn't work. The array $_POST['emails'] is totally empty...
  6. kusarigama

    display certain contents of an array, selected by checkbox

    Hi all, I have a textfile with email addreses. With the following script, I try to display only the selected emails (Checkbox) It won't work. Can anybody help me ? Thanx in advance Olli $fp = fopen($reader,&quot;r&quot;); while(!feof($fp)) { $emails = chop(fgets($fp,260))...
  7. kusarigama

    downloadind a picture

    Hi all, Is it possible via PHP to create a link,where you are able to download a picture from a certain folder. Thanx in advance Olli
  8. kusarigama

    &lt;? $updir = &quot;/pictures/&quot;; $good

    Hi all, I've a problem with the following. When I hit the upload button I get a error message from the script which says: UNABLE TO CREATE '/pictures/': Is a directory ... this directory already exists - I didn't tell the script that it should create a directory ... Here is the code: HTML...
  9. kusarigama

    multiple file upload+function

    Hi, all I have a problem, that i have 3 userfile fields which i want to parse to a function. All works - but only if i start with the first one. When I start with the second, than no file of those 3 will be uploaded. here is a snippet of my code: HTML stuff ... <input name=userfile[]...
  10. kusarigama

    Protection of folders

    Hi all, I have the problem that I want to access a certain page via the link (in the addressbar). When I type the correct address, then I should get access to the desired page, but only if the link is correct eg. http://www.somedomain.com. When I type http://www.somedomain.com/ThePpastedUrl.htm...
  11. kusarigama

    multiple file uploads

    Hi all, I' ve got a problem concerning multiple file uploads. The files won't be copied to my location. Here is a snippet of my code: thanx in advance Olli ..html stuff <input name=userfile[] type=file> <input name=userfile[] type=file> <input name=userfile[] type=file>...
  12. kusarigama

    cannot sent two variable ...

    Hi all :), Does anyone know why I can't send the second variable named &quot;NAME&quot; in my script below ? Olli $image_size = getimagesize(trim($pic_big[$mod_num])); print&quot;<a href=#...
  13. kusarigama

    hidden fields value on first submit

    hidden fields (Visitor) Apr 25, 2002 Hi all, is there a way to get the value of a hidden field as soon as the the form is submitted. The current state is that the value is only visible when I press the submit button a second time. Here is the snippet: if( ...something) { print&quot;<input...
  14. kusarigama

    Hi all, I have a page with a link

    Hi all, I have a page with a link for a Javascript popupwin. The popup win opens with the picture but the my page where I clicked the link turns into white and on the top left corner is a message saying &quot;[object]. Does anyone know why. In addition the height tag also doesn't work for my...

Part and Inventory Search

Back
Top