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!

Recent content by progman1010

  1. progman1010

    how to show a nav bar the right way

    johnwn- thanks for reminding me. tyutghf- i've been googling for a while and couldn't really find anything specific to my issue. It's really more of the approach i'm having trouble with- because of the overlaps in the tabs, it's not as straightforward as if the tabs were more separate (vertical...
  2. progman1010

    how to show a nav bar the right way

    OK, so my designer made a really cool navigation bar but it's kinda stumped me as to the best way to display it without going nuts with lines of extra code. It has a mouseover which will change the blue tabs to green, and when you mouseover, the subnav will display. In addition, when you are on...
  3. progman1010

    turn off reconcile?

    sounds like the best solution is to turn off the buzz in profiles. Thanks!
  4. progman1010

    turn off reconcile?

    it does. all i want to do is sync with the server manually. i get about 100+ valid emails daily and that little buzz everytime a message comes in is getting old.
  5. progman1010

    3D objects in strings

    I think we're good here. It appears I wasn't so off-base after all. I was just trying to use the object type like a multi-dimensional array. In context, the object is from a class like $c = new member(23); echo $c->firstname; Then, there was a need to get an array within the member object...
  6. progman1010

    turn off reconcile?

    is there any way to set my pearl to only reconcile on a set schedule or manually? I want to keep Wireless Reconcile on, but I just want to choose when I download messages.
  7. progman1010

    Display info in columns

    Those sound good, but they seema a little overly-complicated. Why not use the modulus (%) operator? Here's what I usually do: $maxcol = 4; $count = 0; echo "<table>"; $result = mysql_query("SELECT * FROM table"); while ($t = mysql_fetch_object($result)) { if ($count % $maxcol == 0) echo...
  8. progman1010

    3D objects in strings

    good questions- what I was trying to do is basically use the object like an array (like $val['thiskey']['thisval']) because of how my class was created. Seems like I should give more thought to the object itself and its architecture. Based on this, I guess thisval would be a property of...
  9. progman1010

    apache to IIS transition

    something to look out for with IIS vs. Apache are Date/Time calculations. I forget which one, but one of the servers will require leading zeroes and other specifics that can cause hard-to-find errors. I converted a site from Apache to IIS which had a calendar with recurrence and a bunch of...
  10. progman1010

    3D objects in strings

    Until now, i hadn't tried it in a file all by itself, only within other scripts. Without curly braces, it throws an error: Catchable fatal error: Object of class stdClass could not be converted to string in /home/generic5/public_html/test.php on line 6 With curly braces, it executes fine.
  11. progman1010

    Making strtolower work the same on UTF and ISO

    depends- how are you using it? code sample?
  12. progman1010

    Hash (#) symbol for commenting, or . . . ?

    I agree with jpadie- why on earth would a host ever have a reason to even look at your code?! It's surely a breach of etiquette, if not a credible legal breach.
  13. progman1010

    3D objects in strings

    Hello- this is more of a "why" question than a problem itself... It's easy to create and reference 3-dimensional objects: //example $ob->firstkey->nextkey; PHP syntax allows me to include a 2D object into a string without much trouble: echo "Some text and $var->thisval more regular text"...
  14. progman1010

    Script execution memory issues

    whoops - i just misspelled it: http://www.bniconnection.com/uploads/uploaders.txt
  15. progman1010

    Script execution memory issues

    here's the error message: Warning: fgetcsv() expects parameter 1 to be resource, boolean given in /home/generic5/public_html/contents/admin_super/uploaders_run.php on line 25 Fatal error: Out of memory (allocated 51904512) (tried to allocate 35 bytes) in...

Part and Inventory Search

Back
Top