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 IamaSherpa 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: *

  1. mrfundeath

    vitalize with php

    Can I retreive the height and width of a vitalize file with a php function? GetImageSize does not work. And does anybody know anything else php can do with vitalize? for those of you who dont know what vitalize is, its a plug-in that plays .ccn files. go to http://clickteam.com to see more...
  2. mrfundeath

    uploading a file

    ok i fixed the prob! the form tag should have a ENCTYPE="multipart/form-data" and the folder where I uploaded should have its chmod changed as well..
  3. mrfundeath

    getting swf height and width

    ooooooh thanks! i didnt know i could get the height and width for a flash movie with getimagesize()
  4. mrfundeath

    uploading a file

    In php 4 bible it says that the double slashes are ok. It doesnt work even if i used stripslashes() and got single slashes!! I think its cause my hoster wont lemme upload files with php
  5. mrfundeath

    uploading a file

    yea they both have root and filename. the error says: Warning: Unable to open 'C:\\file\\mymovie.swf' for reading: No such file or directory in /usr/home/e/v/eviltaco/public_html/upload.php on line 6 the php code i used (in case it helps) is: if (isSet($upload)) copy($userfile...
  6. mrfundeath

    uploading a file

    I dont know whether its me or the hoster, but whenever i do copy($file,"file/directory"); i get an error that says file "C:\directory\file.swf" could not be found in "server/directory" . Is it because my hoster won't allow me to upload files or is it because i did...
  7. mrfundeath

    getting swf height and width

    is there a way to get the height and width of a flash movie?
  8. mrfundeath

    client's time zone

    nevermind i figured it out
  9. mrfundeath

    client's time zone

    is there a function that returns the user's time zone? or possibly change a timestamp according to his/her system clock?
  10. mrfundeath

    making [link] tags for a web forum.

    Ok i made it work: function forum_opt($messege){ $messege = htmlspecialchars($messege); while(TRUE){ $link = strpos($messege , "[link="); $link2 = strstr($messege,"[link="); $link3 = strpos($link2 , "]"); $link4 = $link3+1 ; $link5 = substr($link2, 0, $link4)...
  11. mrfundeath

    Can somebody help me connect to SQL Server?

    You have to use ' marks instead of \"
  12. mrfundeath

    making [link] tags for a web forum.

    How would i go about making [link][/url] tags work for a PHP web forum i am making using string replacement functions? everything else for the forum i can do ( bold, colors, smileys etc.) but the link tag i am having problems. For instance if people leave off the [/url] or just do...

Part and Inventory Search

Back
Top