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!

Search results for query: *

  1. Momozone

    FOREACH - from mysql

    Ah yes - many thanks for your help. MoMoZoNe
  2. Momozone

    FOREACH - from mysql

    ok so that works , sorta - The first row is now missing??? Its only printing the second row onwards? MoMoZoNe
  3. Momozone

    FOREACH - from mysql

    jpadie - I tried Marks suggestion and it didnt work. I tried this way after a few googles and its works: for ($i=0; $i<$numserver; $i++) { foreach ($setarrserver as $key => $row) { echo ( $key=="productname" ) ? $row : ""; } $row++; } MoMoZoNe
  4. Momozone

    FOREACH - from mysql

    actually using the while i only seem to be getting the following results: 9 9 which is odd!!!! when i count the rows of data it tells me there is 3 - which is correct mysql_numrows($servers_result) this returns 3 rows. Why is foreach or while not working? MoMoZoNe
  5. Momozone

    FOREACH - from mysql

    I tried your example above but am just getting a blank page? Doesnt appear to return anything? MoMoZoNe
  6. Momozone

    FOREACH - from mysql

    but shouldnt foreach work? MoMoZoNe
  7. Momozone

    FOREACH - from mysql

    I have a query: $servers_query = "SELECT * FROM servers"; which i grab the result in a variable: $servers_result = mysql_query($servers_query); then I put the result into an array: $arrserver = mysql_fetch_assoc($servers_result); and try to print using foreach...
  8. Momozone

    CDR Reports

    I have a need to connect directly to the Symposium databases to view the data in ecallbycall. Can anyone explain how to setup a DSN to connect to the database? MoMoZoNe
  9. Momozone

    IIS6 and PHP5

    yes i have libmysql.dll in that directory but still nothing. Any of the dlls should not need to be in system32 as long as the directory they are in is in PATH MoMoZoNe
  10. Momozone

    IIS6 and PHP5

    Ok so here is my problem: I has IIS6 and have insatlled PHP ISAPI version for IIS. When I view my PHPINFO() info page mysql is not loading. I have verified that PHP.INI is the correct location being C:\WINDOWS . I have also ensured that php_mysql.dll added to php.ini as an extension. Despite...
  11. Momozone

    Mapping a Network Printer - Logon Script

    But the printer should be available to print to? As it is currently not. MoMoZoNe
  12. Momozone

    Mapping a Network Printer - Logon Script

    I am not using VBScript. I am using a batch script. The operation completes but printer does not appear. Thanks for your reply anyway. MoMoZoNe
  13. Momozone

    Mapping a Network Printer - Logon Script

    OS: Windows Server 2003 Active Directory Printer Installed and Shared In my login script I have the following: NET USE \\IPADDRESS\PRINTER However the printer does not appear as a printer that can be used on the PC after this command. I have tried to enter it manually on the PC and it says...
  14. Momozone

    Active Directory - GPO to list Intranet sites

    smarksfrcb - Go to your Policy and go to User Configuration > Windows Settings > Internet Explorer Maintenance > Security > Security Zones and Content Ratings "Under Security Zone and Privacy select Import the current security zones and privacy settings" This is configure all the clients...
  15. Momozone

    Active Directory Policy

    I can ping the domain, I can ping the domain server and from the domain server I can ping the machine all by name so I dont think it is a DNS issue. I have read stuff on media sensing could this be causing me my headaches? MoMoZoNe
  16. Momozone

    Active Directory Policy

    In addition I am getting in error in the even viewer "Windows can not obtain the domain controller name for your computer... Group Policy processing aborted" Can anyone help? MoMoZoNe
  17. Momozone

    Active Directory Policy

    I have a list of 100 users in a container with a policy assigned to it. I have set the policy to No Overide. However when I add a machine to the domain and try log in as one of those users the policy does not take effect. Is there anything else I need to do? I have also granted permisions for...
  18. Momozone

    Move Active Directory

    Thanks guys! MoMoZoNe
  19. Momozone

    Move Active Directory

    I have installed Active Directory to my C: drive however there is only 3Gb left. I am putting the roaming profiles on another drive however I am just wondering should i be worried about the hard drive space? If so is there a way I can easily move the database and sysvol tree? Is it possible to...
  20. Momozone

    PHP Variable containing a space

    feherke, ITs obvioud from his post it would not work. To Clarify I did try it and it was not useful. I have done this and it resolved it: echo "</td> </tr> <tr> <td> <input type='text' name='newname' value=\"".htmlspecialchars($info['name'],ENT_QUOTES)."\" size=40 maxlenght=40> </td>...

Part and Inventory Search

Back
Top