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 SkipVought 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. cabernet

    Ending HTML line in a template

    FYI I ended by modifying my main governing class ='{' .$key. '}'; instead of ='<!--{'.$key.'}-->'; that did it thanks again
  2. cabernet

    Ending HTML line in a template

    Thank you That was fast regex sounds like a good option
  3. cabernet

    Ending HTML line in a template

    Hello, I have an OOP system based on my templates I would like upgrading the system and offering color changes via bgcolor= So instead of <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" valign="top" bgcolor="#ffffcc"> I would like doing: <table width="100%"...
  4. cabernet

    Recursive - copy a directory, sub dir and files

    Thank you Well, I even did look at manual before posting! :) that should indeed do it.
  5. cabernet

    Recursive - copy a directory, sub dir and files

    Thank you, It seems to be here: if(!is_dir($dirsource."/".$file)) copy ($dirsource."/".$file, $dirdest."/".$dirsource."/".$file); else COPY_RECURSIVE_DIRS($dirsource."/".$file, $dirdest);
  6. cabernet

    Recursive - copy a directory, sub dir and files

    The following regards: PHP5 and Apache2 I cannot figure the proper scripting however as is it does not generate an error, just plain does nothing! <?php //error_reporting (E_ALL); $dirsource="../tpl_for_dupli/calendar"; $dirdest="../chamber_members/calendar"; function...
  7. cabernet

    Generating Random Numbers

    Just change the string's character number here for the ex it is set to 8 <?php // Our string will have 8 characters, but you can easy change for($i = 0; $i < 8; $i++) { // All the letters and numbers $type[1] = "A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|X|W|Y|Z"; $type[2] =...
  8. cabernet

    how to set a timer of a page?

    Just forgot you need the cron to first send then del the form
  9. cabernet

    how to set a timer of a page?

    Using OOP you can dynamically (if you have enough ownership on your server) out of a template create the exam form upon registration form filling. Then on the same script page and after the form creation section add still dynamically a cron-job by grabbing when the form is created and loaded on...
  10. cabernet

    Mode_rewrite; almost there!

    Hello, Is it possible applying mode_rewrite to the content of a folder located at root level That contains PHP files and has an index.php But knowing that the site root index is index.html This mode rewrite utilizes OB and works fine with another site However the other site root index has a...
  11. cabernet

    Mouse, How to: Disable file preview

    bcastner Thanks found it in Xp Pro it is way down all the options list and named: "Show po-up descriptionfor for folder and desktop items" I do PHP prg and am always looking for a bunch of files, now I am back to my usual mouse setup.
  12. cabernet

    Mouse, How to: Disable file preview

    Thanks micker377 ...on my way!
  13. cabernet

    Mouse, How to: Disable file preview

    Thank you but files are still displayinp Type and description Date modified size regards henry
  14. cabernet

    Mouse, How to: Disable file preview

    Hello, I cannot take that stuff any longer Dell Laptop, Xp pro I use a mouse with my laptop but need to disable file preview when my mouse's pointer is overing in files I would like disabling the mouse side popup that gives file or folder preview thank you Henry
  15. cabernet

    PHPMyAdmin dump correct syntax ( I am in trouble!)

    I was trying to use mysqldump within a query originated from within PHPMyAdmin as per the PHP manual (not the PHPmyAdmin manual) it is ok to use a where clause with mysqldump I tried a few ways of writing the query but none worked the reason is fortuantely I have an archive but (my mistake...
  16. cabernet

    PHPMyAdmin dump correct syntax ( I am in trouble!)

    Good point yes I may dump the whole thing in a temp and filter it out that will presently help me however I looked in the PHP manual and yes with dump one may add as option a &quot;where clause&quot; still the question is how to write it correctly thanks
  17. cabernet

    PHPMyAdmin dump correct syntax ( I am in trouble!)

    Hello I cannot remember and do not find example on how correctly write in PHPMyAdmin the following I need to perform a mysqldump from a given table (that is the one presently selected in PHPMyAdmin; so I think the table name does not need to be again typed in the query) << mysqldump WHERE...
  18. cabernet

    Problems installing php for apache

    I published a tutorial and a few links here: http://www.lurkhere.com/index.html look fot the right hand side &quot;configure Apache etc...&quot; it should go very well then update if you wish and install a fesh php my admin also why do you install from source and not using an easy RPM :) cheers
  19. cabernet

    transform MySQL result as a variable

    don't know why but brakets before and after &quot;id&quot; do not show in the array not my mistake I guess the post script escape brakets?
  20. cabernet

    transform MySQL result as a variable

    I did it and post the answer for future ref $old_file=&quot;index.php&quot;; // pass ID value to index extension and add .php while($query_data=mysql_fetch_array($result)) { $new_file=&quot;index&quot;.$query_data[&quot;id&quot;]. &quot;.php&quot;; } rename($old_file, $new_file);

Part and Inventory Search

Back
Top