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

  • Users: mikefn
  • Order by date
  1. mikefn

    How do you dynamically create private variables?

    Can you just use temp as a private variable? Then from outside class you call with: $c = new Dynamic(); $c->sample1 = ... -- Mike FN "8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer."
  2. mikefn

    passing on GET/POST vars

    Hi Kareem, You can use curl function when you want to send the value to other site without having other page to display. Goto www.php.net and search for curl inside the function. From there, you can learn on how to use it. Hope it helps. -- Mike FN "8 out of 10 Owners who Expressed a...
  3. mikefn

    Converting a text entry to a drop-down = parse error

    There are many ways to solve your problems. I would rather to use \" ... \" technique so my code won't be messy. For example: $content = " <span class=\"style4\">(Fields Marked With * Are Required)</span></p> <form action=\"address_confirmation.php\"...
  4. mikefn

    XML

    Beside use DOM XML, you can use SimpleXML, here is the reference: http://id2.php.net/manual/en/ref.simplexml.php Make sure either domxml or simplexml exists in your php configuration. If you are not sure about how to detect this, please make a php file just like this: <?php phpinfo(); ?>...
  5. mikefn

    What is an .htaccess script?

    Try to refer at: http://www.htmlite.com/HTAintro.php I hope you can find something useful about htaccess. -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer.&quot;
  6. mikefn

    working with structures

    Hello Frank, I'm not quite sure if I get your question right. Please take a look at: http://etude.uwaterloo.ca/~ctrudeau/lessons/C++/tutorial2.html Maybe casting method of void* can solve your problem? -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred...
  7. mikefn

    Creating Static Formatted Page with dynamic data

    Hope I get this right. You can use passing variables thechnique so it will keep top part's information and have the bottom part's information changes. There are lots of way to do this. You can use session variables to hold some information. GOod luck Cheers, Mike -- Mike FN &quot;8 out of...
  8. mikefn

    Running a BAT file from a web page

    I'm new to ASP. What will it do for line 3: Set objWSH = Nothing? Can I use these 3 lines to execute something like "test.exe 1078" where 1078 is the passing input to a file test.exe? THanks. -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web...
  9. mikefn

    inputs on a webpage

    Do you know how VB access webpage without opening the browser? Thanks. -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer.&quot;
  10. mikefn

    Inverted Comma in a URL

    You can solve the problem by following either one of these: 1. try \&quot;$myrow[Company_Name]\&quot; instead. 2. do htmlspecialchars() hope this helps ... Mike -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer.&quot;
  11. mikefn

    simple mod_alias question...

    Hi all, I have a question regarding to the URL. You know sometimes you can goto: www.xyz.com/support www.xyz.com/download www.xyz.com/info How do you setup support, download, and info to point out to the page/file instead of directories? First I thought that support, download and info are...
  12. mikefn

    Upgrade Apache, PHP, RedHat 7.2 to RedHat 8

    I think you become spoil of Apache, PHP, etc that comes with RedHat. So you're afraid of taking a chance to install them manually and prefer migrating to the later version of RedHat. Since this is a text box, you should try to install all the packages (php, apache, ssl, etc.) by yourself. It...
  13. mikefn

    Access Denied logging into Redhat Linux server

    do ipcbains -F to reset firewall after that, you can try again Hopefully the SSH works this time! -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer.&quot;
  14. mikefn

    Install X Windows on Redhat

    KDE and GNOME are GUI environment. If you can't access your GUI (Xwindows), why do you bother to install the GUI environment? -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer.&quot;
  15. mikefn

    I have a domain name now what

    When you register a domain, lets say: homeip.net Sometimes the provider give you options that you can do domain forwarding, i.e: IP address hostname 11.22.33.235 group1.homeip.net 11.22.33.236 group2.homeip.net Now there's option in sendmail...
  16. mikefn

    I have a domain name now what

    the best thing to use is using sendmail. Edit the configuration file sendmail.cf: MASQUERADE_AS(`mydomain.com')dnl FEATURE(masquerade_envelope)dnl FEATURE(masquerade_entire_domain)dnl And you're good to go -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats...
  17. mikefn

    New to linux networking...

    You can download webmin (www.webmin.org). That's a GUI version of administrator tools for Unix. Then later on down the road, you will see what files that interacted for this and that. -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer.&quot;
  18. mikefn

    Integration and Management of Win NT and Unix server

    Try to install webmin (http://www.webmin.com). You can setup samba much easier from that. Hope this helps you big time!!! :) -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer.&quot;
  19. mikefn

    VNC and redhat 9

    Using a VNC is limited for any Linux environment. You won't get all the GUI stuffs. You will get a different display of what you've expected. I don't think there's a better way right now. -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer.&quot;
  20. mikefn

    Running PHP from shell to get remote file

    I'm suggesting that you use open socket connection. http://www.devshed.com/Server_Side/PHP/SocketProgramming/page8.html -- Mike FN &quot;8 out of 10 Owners who Expressed a Preference said Their Cats Preferred Web Programmer.&quot;

Part and Inventory Search

Back
Top