Jump to content

SilverBulletUK

Member
  • Posts

    59
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

Everything posted by SilverBulletUK

  1. Well, with PHP you can do the following.... <?php function someFunction($messageString = null) { if($messageString != null) { //Do something } else { //Do something else with user defined $messageString } } ?> Is this not possible? Maybe by specifing a default value?
  2. **** it, I should really test this stuff before I post. !! Back to the command line I go.. Sorry!
  3. FOR /f "usebackq tokens=1" %%i IN (`net use * %SHARE% %PASSWORD% /user:%USERNAME% /PERSISTENT:NO`) DO @echo %%i or FOR /f "usebackq delims= "" tokens=1" %%i IN (`net use * %SHARE% %PASSWORD% /user:%USERNAME% /PERSISTENT:NO`) DO @echo %%i ? maybe
×
×
  • Create New...