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 Chriss Miller 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 alfalf

  1. alfalf

    Flash over web content Mozilla problem

    Hello all, if anyone could give me a hint. This web page www.visitsplit.com has some content and has Diokletian tzar flash animation playing the tennis. We placed this animation in a way where tsar would hit the ball and ball will bounce between top, left and right content column. All is done...
  2. alfalf

    Flash over web content Mozilla problem

    Hello all, if anyone could give me a hint. This web page www.visitsplit.com has some content and has Diokletian tzar flash animation playing the tennis. We placed this animation in a way where tsar would hit the ball and ball will bounce between top, left and right content column. All is done...
  3. alfalf

    find country from which user is browsing?

    Ask for any problems occuring. dbertovi@e-tir.com
  4. alfalf

    find country from which user is browsing?

    I use maxmind database (free license), with netblocks in xls format (it is such for download), convert it urself to mysql (I use Access (with mysql odbc connector) for any conversion), and then use it. This is a link to download proper version and then u'll have to do some conversion to mysql...
  5. alfalf

    Includes > PHP Architecture Question

    And that is important to know, since we struggle (because of loads of javascript) with download time execution.
  6. alfalf

    Includes > PHP Architecture Question

    Thank You, jpadie. Your statement is 'true' UNDER lots of circumstances. To add: PHP will only parse the syntax of all code, but will NOT include file in parse (neither check its syntax, PHP will not even check against its existance!) if condition for inclusement is not met. That is better...
  7. alfalf

    Includes > PHP Architecture Question

    Here is I again. We found the answer, if anyone interested: We tested this code: <? $a=1; if ($a==1){echo 'a is ok';} if ($a!=1){include blahblah;} ?> In upper code, there's obvious syntax error include blahblah;, yet, PHP returned this in browser: a is ok One can test this easily. So to...
  8. alfalf

    Includes &gt; PHP Architecture Question

    Hello all. I have some general questions about INCLUDES in PHP. Perhaps it will sound dumb, but I want to be sure :-). So, PHP (pseudo) code: if (condition 1) INCLUDE APPROPRIATE INCLUDE FILE if (condition 2) EXECUTE SOME CODE So, my questions are: 1. Does PHP, while parsing...
  9. alfalf

    Double click on folder returns Search

    Thank You both! I used first answer to resolve problem. Thanks again, this was anoying.
  10. alfalf

    Double click on folder returns Search

    HEllo. I'm using Win XP Pro as my Os. I don't know if I have done something, but when I'm browsing folders, when I doubleclick on a folder, instead of opening it in same window (as my settings are), it opens another window offering search. In other words, when I rightclick a folder, first...
  11. alfalf

    problems with sessions

    Hello all. Recently I changed server computer and set new web server for developement purposes. My sessions are stored in an mySQL table. Every page on this developement web starts with two following lines: if(file_exists('C:/includes/phpSecureSessions.inc')) {include...
  12. alfalf

    how to deal with 'Web Page Expired'

    Hello all. I have an form (POST submitted to php script). I do validation on that form, and if someone misses to fill something, it reloads itself (when Submit button pressed) pointing to missing or bad data. Then when everythings ok, the form is submitted to another page. The problem that...
  13. alfalf

    Value from disabled text input field doesn't pass POST method on form

    Thanks. I used read-only already, it smelled on something like that :-). Thanks.
  14. alfalf

    Value from disabled text input field doesn't pass POST method on form

    Hello all. It seems that value from disabled text input field doesn't pass POST method. Can that be a case? I use PHP as SSS, and it returns unset value of HTML disabled field on POST method HTML form, even if it value is set. Help? Thanks.
  15. alfalf

    Problem with querying text that has singlequote

    Hello people, thanks. As of Saint David's -> the problem is solved with \ (backslash - Saint David\'s worked just fine). But for 's-Hertogenbosch (and other cities starting with singlequote), no result. This is a bit paculiar problem but not so of huge importance. Never the less, any other...

Part and Inventory Search

Back
Top