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 strongm 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. rockstardub

    Newbie: variables in function

    Please help.
  2. rockstardub

    Newbie: variables in function

    Is this what you want? <? $GLOBALS[text]= "hmm"; function foo() { var_dump($GLOBALS[text]); } foo(); ?>
  3. rockstardub

    mkdir() problems

    Im guessing this is exactly what i need to hear, and my hours of research have taken me down the same path as what you're recommending, but I dont understand it in actuallity. What I know, my group is "myiroomc", both the files when I use FTP and when using php uploading and changing the group...
  4. rockstardub

    mkdir() problems

    I don't know how to make a directory on my website with a php page without changing the permissions to 777, please help!
  5. rockstardub

    Add checkbox values and display total in plain text!

    <html> <head> <script language="JavaScript"> // by Kirk Strobeck | kirkstrobeck.com | kirk@strobeck.com // function initialize() { Total = 0; totalprice.innerText = Total; } function checkoption(checkbox) { checknum = parseInt(checkbox.value); //Turn the value into a number...
  6. rockstardub

    Trouble installing MySQL on Mac OS X Tiger (10.4)

    I tried exactly what "macubergeek" said and this is what I got kirk:~ kirkstrobeck$ mysqld_safe & [1] 2363 kirk:~ kirkstrobeck$ touch: /usr/local/mysql/data/kirk.local.err: Permission denied chown: /usr/local/mysql/data/kirk.local.err: Permission denied Starting mysqld daemon with databases from...
  7. rockstardub

    Trouble installing MySQL on Mac OS X Tiger (10.4)

    Please help me solve this problem. I have tried so many things, and still this is what happens... Last login: Fri Jun 10 18:32:02 on ttyp1 Welcome to Darwin! kirk:~ kirkstrobeck$ cd /usr/local/mysql/bin kirk:/usr/local/mysql/bin kirkstrobeck$ mysql -u root ERROR 2002 (HY000): Can't connect to...
  8. rockstardub

    Trouble installing MySQL on Mac OS X Tiger (10.4)

    This works to start it though cd /usr/local/mysql; sudo echo sudo ./bin/mysqld_safe &
  9. rockstardub

    Trouble installing MySQL on Mac OS X Tiger (10.4)

    Doesn't Work. Last login: Thu Jun 9 20:41:44 on console Welcome to Darwin! kirk:~ kirkstrobeck$ cd /usr/local/mysql kirk:/usr/local/mysql kirkstrobeck$ bin/mysql -u root ERROR 2002: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) kirk:/usr/local/mysql kirkstrobeck$
  10. rockstardub

    Trouble installing MySQL on Mac OS X Tiger (10.4)

    I have searched all over the internet, and tried to learn how to do this. It's not really up my alley, so please someone tell me what to do! Here are some of the things I type and the messages I get with them. kirk:/usr/local/mysql kirkstrobeck$ mysql -u root ERROR 2002 (HY000): Can't connect...
  11. rockstardub

    Need Help Installing MySQL on Tiger OS X

    Oh gosh, thanks, I don't know how that happened.
  12. rockstardub

    Need Help Installing MySQL on Tiger OS X

    I have searched all over the internet, and tried to learn how to do this. It's not really up my alley, so please someone tell me what to do! Here are some of the things I type and the messages I get with them. kirk:/usr/local/mysql kirkstrobeck$ mysql -u root ERROR 2002 (HY000): Can't connect to...
  13. rockstardub

    Actionscript: Help with making Reusable Code

    Thanks man, helped a great deal,so what is the explination behind the period missing? does the "[" tag lose the period in the start, and why not the end as well? Is that similar to an array of the movie clip? Is that how the information is stored?
  14. rockstardub

    Actionscript: Help with making Reusable Code

    Look, I've made a more simplified version of the problem, please try and work with the FLA and show me what I'm doing wrong. Download this simplified FLA I commented part of the code so it would work when I tested the FLA, so I knew I could do part of it right, but still cannot make it...
  15. rockstardub

    Actionscript: Help with making Reusable Code

    That can't work though, because the topic needs a number after it. homenews.topic1.header.header = _root.newsheader1 + " # 1 /";
  16. rockstardub

    Actionscript: Help with making Reusable Code

    I don't know what the problem is, I tried to duplicate this code: homenews.topic1.header.header = _root.newsheader1 + " # 1 /"; homenews.topic2.header.header = _root.newsheader2 + " # 2 /"; homenews.topic3.header.header = _root.newsheader3 + " # 3 /"; into this, but it didn't work...
  17. rockstardub

    Actionscript: Help with making Reusable Code

    hey great syntax, thanks, haven't seen that anywhere, I'll give it a try.
  18. rockstardub

    Actionscript: Help with making Reusable Code

    Oops, well I think this is my real problem that I've faced more than once... "homenews.topic" + i + "._currentframe" concatenating these things, how is it done? eval() or what?
  19. rockstardub

    Actionscript: Help with making Reusable Code

    I have a problem, I need to learn how to make my code more reusable, heres what I'm working with: if(_root.news_select == 1) { if(homenews.topic2._currentframe == 10) { //if it's red homenews.topic2.play(); } if(homenews.topic1._currentframe == 1) { //if it's black...
  20. rockstardub

    Image upload database reference - image name row ID

    One of the best table formatting is like this... <? //DB connect info mysql_connect("127.0.0.1","jim11","") or die("Could not connect to SQL server!"); mysql_select_db("gbplantandmachinery") or die("Could not find database!"); echo "<table>"; echo "<tr> <td>Image</td> <td>Title</td>...

Part and Inventory Search

Back
Top