Go to details in php

I am trying to create a go to details page using PHP and
MySQL but cannot figure out how to get the parameter passed into my
update record table. I know with Coldfusion there is a very simple
server behavior built into Dreamweaver to acomplish this. Can
anyone assist me with how to handle the same task with PHP?
what i want is for clients to be able to add new records,
(which is working) and then view all records and go to a certain
record for editing (which is what i am having trouble with). Any
help is appreciated. Thanks.

fbcojman wrote:
> I am trying to create a go to details page using PHP and
MySQL but cannot
> figure out how to get the parameter passed into my
update record table.
When creating the link to the details page, pass the primary
key of the
record as a query string at the end of the URL like this:
details.php?article_id=5
The way to code this is to select the link in Design view,
and click the
folder icon to the right of the Link field in the Property
inspector.
Select the name of the details page, but don't click OK.
Instead, click
the Parameters button in the dialog box. In the new dialog
box that
opens, type the name of the primary key into the Name field.
Then click
the lightning bolt icon to the right of the Value field, and
select the
primary key from the recordset.
In the details page, use URL parameter as the filter to
select the
appropriate record.
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS3" (friends of
ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/

Similar Messages

  • Master Detail pages php/mysql  Links

    I have a master/detail page setup that is working properly. I
    am trying ot add a Link to only a few of the detaill pages but not
    to show up on others. I tried to set just do the html in a text
    field but It owuld not come out as link. It did underline it like a
    link.
    I also tried to do a If statement but am getting parse errors
    when I add the html code.
    <? if ($row_detail['link'] {
    echo "<a herf=$row_detail['link']>Expanded
    Detail</a>
    I get a parse error of unexpected <
    Any body have any idea if this is possible and how I might
    get it to work
    Thanks
    Tim

    David
    Getting closer I put in this
    <? if ($row_rscdetail['link']) {
    echo "<a herf='{$row_rscdetail['link']}'>Expanded
    Detail</a>"; } ?>
    Everything is good except it is not a link. It is underlined
    and mouses over but not link.
    The source code from ie is
    <a herf='
    http://www.sflcondos.com'>Expanded
    Detail</a>
    I also put the " " around the link in the table field and
    removed the ' ' from <a herf='{etc}' and it came out in source
    code as
    <a herf="
    http://www.sflcondos.com">Expanded
    Detail</a>
    It has got me stumped
    Thanks for your help
    Tim

  • PHP/MySQL image upload

    I am looking for an easy to understand PHP tutorial on
    uploading an image to a folder. However I would like to put a
    reference/path to the image in a MySQL batabase table.

    newhorizonhosting.com wrote:
    > I am looking for an easy to understand PHP tutorial on
    uploading an image to a folder. However I would like to put a
    reference/path to the image in a MySQL batabase table.
    The PHP online manual is pretty comprehensive on file
    uploads.
    http://www.php.net/manual/en/features.file-upload.php
    You can get the name of the file from
    $_FILES['fieldName']['name']
    (where 'fieldName' is the name of the form field that uploads
    the
    image). It's just a question of using that information to
    insert into a
    database.
    I cover image file uploads in considerable detail in "PHP
    Solutions" if
    you're interested in a more comprehensive approach.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Problem of php scripts

    I am a new php user, I have a problem of the php scripts syntax in my detail_member.php and error message is showing that which I don't know how to fix , if you can help me who is a new php user and the first time user on this forum, I 'll be very grateful appreciate.
    Error message:Parse error: parse error in c:\program files\easyphp1-8\www\immanuel\public_html\member\detail_member.php on line 103
    Code:
    <?php require_once('../../Connections/icccon.php'); ?>
    <?php
    mysql_select_db($database_icccon, $icccon);
    $query_query_date = "SELECT * FROM member, timesheet WHERE member.memberID=timesheet.memberID";
    $query_date = mysql_query($query_query_date, $icccon) or die(mysql_error());
    $row_query_date = mysql_fetch_assoc($query_date);
    $totalRows_query_date = mysql_num_rows($query_date);
    $maxRows_query_date = 10;
    $pageNum_query_date = 0;
    if (isset($_GET['pageNum_query_date'])) {
    $pageNum_query_date = $_GET['pageNum_query_date'];
    $startRow_query_date = $pageNum_query_date * $maxRows_query_date;
    mysql_select_db($database_icccon, $icccon);
    $recordID = $_GET['recordID'];
    $query_query_date = "SELECT * FROM member WHERE memberID = $recordID";
    $query_limit_query_date = sprintf("%s LIMIT %d, %d", $query_query_date, $startRow_query_date, $maxRows_query_date);
    $query_date = mysql_query($query_limit_query_date, $icccon) or die(mysql_error());
    $row_query_date = mysql_fetch_assoc($query_date);
    if (isset($_GET['totalRows_query_date'])) {
    $totalRows_query_date = $_GET['totalRows_query_date'];
    } else {
    $all_query_date = mysql_query($query_query_date);
    $totalRows_query_date = mysql_num_rows($all_query_date);
    $totalPages_query_date = ceil($totalRows_query_date/$maxRows_query_date)-1;
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>detail_member</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="../styles/icccon.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <table>
    <tr>
    <td width="62%" nowrap class="m-time"><?php $row_query_date['Sunday']recordID=$row_query_date['Sunday'];?><br></td>
    <td width="38%" nowrap class="m-time">Delete</td>
    </tr>
    </table>
    </body>
    </html><?php
    mysql_free_result($query_date);
    ?>

    Followed your instruction, I have put the surrounding code tags of my php codes, hopfully it helps you to read and help me to figure out the problem of syntax on line103 which is:<td width="62%" nowrap class="m-time"><?php echo $row_query_date['Sunday'];recordID=$row_query_date['memberID'];?></td>
    <?php require_once('../../Connections/icccon.php'); ?>
    <?php
    mysql_select_db($database_icccon, $icccon);
    $query_query_date = "SELECT * FROM member LEFT JOIN timesheet ON member.memberID = timesheet.memberID";
    $query_date = mysql_query($query_query_date, $icccon) or die(mysql_error());
    $row_query_date = mysql_fetch_assoc($query_date);
    $totalRows_query_date = mysql_num_rows($query_date);
    $maxRows_query_date = 10;
    $pageNum_query_date = 0;
    if (isset($_GET['pageNum_query_date'])) {
      $pageNum_query_date = $_GET['pageNum_query_date'];
    $startRow_query_date = $pageNum_query_date * $maxRows_query_date;
    mysql_select_db($database_icccon, $icccon);
    $recordID = $_GET['recordID'];
    $query_query_date = "SELECT * FROM member WHERE memberID = $recordID";
    $query_limit_query_date = sprintf("%s LIMIT %d, %d", $query_query_date, $startRow_query_date, $maxRows_query_date);
    $query_date = mysql_query($query_limit_query_date, $icccon) or die(mysql_error());
    $row_query_date = mysql_fetch_assoc($query_date);
    if (isset($_GET['totalRows_query_date'])) {
      $totalRows_query_date = $_GET['totalRows_query_date'];
    } else {
      $all_query_date = mysql_query($query_query_date);
      $totalRows_query_date = mysql_num_rows($all_query_date);
    $totalPages_query_date = ceil($totalRows_query_date/$maxRows_query_date)-1;
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>detail_member</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="../styles/icccon.css" rel="stylesheet" type="text/css">
    </head>
    <body><center>
         <div id="reg">
         <p class="visitor-title">Please review the detailed personal information:</p>
    <div id="backlist"><a href="member.php">The List of  Members  </a>   /     <a href="../add_record/add_member.php">Add New Member</a></div>
      <table width="100%"  border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td valign="top" id="visitor-L">
        <p class="infoCopy">ID:<?php echo $row_query_date['memberID']; ?></p>
             <p ><img src="images/<?php echo $row_query_date['large']; ?>" class="kuang"> </p>
          <p><?php echo $row_query_date['title']; ?>  <?php echo $row_query_date['name']; ?><br>
          English Name: <?php echo $row_query_date['englishname']; ?><br>
          <a href="../update/update_member.php?memberID=<?php echo $row_query_date['memberID']; ?>">Update</a><br>
           <a href="../update/delete_visitor.php?memberID=<?php echo $row_query_date['memberID'];?>">Delete</a>
           </p>     </td>
        <td  valign="top" id="visitor-R">
         <ul>
         <li><span class="data">Address:</span><span class="info-detail"><?php echo $row_query_date['address1']; ?>
         <?php echo $row_query_date['address2']; ?></span><br>
         <span class="data">City:</span><span class="info-detail"><?php echo $row_query_date['city']; ?></span><br>
         <span class="data">State:</span><span class="info-detail"><?php echo $row_query_date['state']; ?></span><br>
         <span class="data">Zip Code:</span><span class="info-detail"><?php echo $row_query_date['zip']; ?></span><br>
         </li>
         </ul>
         <ul>
         <li>
         <span class="data">Daytime Phone:</span><span class="info-detail"><?php echo $row_query_date['day_phone']; ?></span><br>
         <span class="data">Night phone:</span><span class="info-detail"><?php echo $row_query_date['night_phone']; ?></span><br>
         <span class="data">Cell phone:</span><span class="info-detail"><?php echo $row_query_date['cell_phone']; ?></span><br>
         <span class="data">Fellowship:</span><span class="info-detail"><?php echo $row_query_date['category']; ?></span><br>
         <span class="data">Email:</span><span class="info-detail"><?php echo $row_query_date['email']; ?> </span><br>
         </li>
         </ul>
         <ul>
         <li><span class="data">Country of Origin:</span><span class="info-detail"><?php echo $row_query_date['country']; ?></span><br>
         <span class="data">Occupation:</span><span class="info-detail"><?php echo $row_query_date['occupation']; ?></span><br>
         <span class="data">Status of Marrige:</span><span class="info-detail"><?php echo $row_query_date['marrige']; ?></span> <br>
         <span class="data">Date of Birth:</span> <span class="info-detail"><?php echo $row_query_date['dob']; ?></span><br>
         <span class="data">Range of Age:</span> <span class="info-detail"><?php echo $row_query_date['age']; ?>  years old</span><br>
         <span class="data">Language:</span> <span class="info-detail"><?php echo $row_query_date['language']; ?></span><br>
         <span class="data">Driving Status:</span><span class="info-detail"><?php echo $row_query_date['drivingOptions']; ?></span> <br>
         <span class="data">Working Status:</span> <span class="info-detail"><?php echo $row_query_date['workingstatus']; ?></span><br>
         </li>
         </ul>
         <ul>
         <li>
         <span class="data">Referral by:</span><span class="info-detail"><?php echo $row_query_date['referral']; ?></span> <br>
         <span class="data">Religion:</span><span class="info-detail"><?php echo $row_query_date['religion']; ?></span><br>
         <span class="data">How Long have been in U.S.?:</span><span class="info-detail"><?php echo $row_query_date['howlong']; ?></span><br>
         </li>
         </ul>     </td>
        <td valign="top"  align="right" id="R" >
         <ul>
        <li><span class="data" colspan="2">Records of attendence on Sunday:</span></li>
         </ul>
         <?php if ($totalRows_query_date > 0) {  ?>
         <table width="80%" border="0" cellspacing="0" align="right" cellpadding="0">
        <tr >
            <td colspan="2" class="m-date">Date of Attendance</td>
          </tr>
        <?php do { ?>
        <tr>
              <td width="62%" nowrap class="m-time"><?php echo $row_query_date['Sunday'];recordID=$row_query_date['memberID'];?></td>
              <td width="38%" nowrap class="m-time">Delete</td>
        </tr>
        <?php } while ($row_query_date = mysql_fetch_assoc($query_date)); ?>
    </table>
         <?php }  ?></td>
         <td valign="top" id="R" >
         <ul>
         <li><span class="data">Records of attendence on Friday Night:</span></li>
         </ul>
         <table width="80%" border="0" cellspacing="0" align="right" cellpadding="0">
        <tr >
            <td colspan="2" class="m-date">Date of Attendance</td>
          </tr>
        <tr>
              <td width="62%" nowrap class="m-time"><?php echo $row_query_date['Friday'];?></td>
              <td width="38%" nowrap class="m-time">Delete</td>
        </tr>
    </table>
         </td>
      </tr>
    </table>
    </div>
    </center>
    </body>
    </html><?php
    mysql_free_result($query_date);
    ?>

  • PHP mail issues with Muse Forms

    I've been trying to findout why my forms are not being sent from my Muse forms. I have spoken with Adobe through the forums and they tell me it's an issue with my Hosting, I've soken with my Hosting, and they said it's an issue with Adobe Muse forms. The bottom line is, I'm in the middle, with forms still not sending.
    The latest information I have had back from my Hosting company - UKFast:
    EMAIL 1:
    Regarding your issue: I'm able to see from the logs on the server that the mail service is up and running and listening for mail connections. Furthermore, I have placed a simple PHP mailer script in /root/testmail.php which sends a quick test message to my mailbox here at UKFast.
    I can see that when sending a message through this script, the message passes through your server correctly and is successfully delivered to my mailbox. Here's an example from the logs:
    2013-06-27 10:49:35 cwd=/root 3 args: /usr/sbin/sendmail -t -i
    2013-06-27 10:49:35 1Us8pb-0001RE-LQ <= [email protected] U=root P=local S=437 T="Test mail" for [email protected]
    2013-06-27 10:49:35 cwd=/var/spool/exim 3 args: /usr/sbin/exim -Mc 1Us8pb-0001RE-LQ
    2013-06-27 10:49:55 1Us8pb-0001RE-LQ => <my email> R=lookuphost T=remote_smtp H=mx02.filter.magicmail.co.uk [81.201.128.59]
    2013-06-27 10:49:55 1Us8pb-0001RE-LQ Completed
    To better advise of the cause to your issue, would you be able to provide some accurate time and dates for messages that you have tried to send. With that information, I should be able to pinpoint the message sending attempts in the logs and hopefully unearth the underlying issue stopping the mail going through for you.
    EMAIL 2:
    I have just tested your script for you and it seems the form does not push to the mailqueue as it should.
    We have managed to establish that Mail is working on the server and PHP can push to it, as per Joe's previous response, thus this is looking like an issue with the code of the page.
    Can someone from Adobe please respond to this, UKFast are saying it's not them, and to be honest, I did run your PHP server test on my server and it scored 3 ticks, all working. So whats going on? I neeed the form function, can someone make it work, or tell me whats needed on my server to make it work.

    I am facing same issue.  Even my host provider could not help me. All my inputs are corrent.
    Some php specialist told me, you have to write smtp details in php.  I am using muse because I do not know any coding.
    What is SQL configuration and how to fix this form issue.  Expection some guidence from Muse experts...

  • Can't connect to wireless network that works fine for other machines

    I received my MacBook Pro last week (2.16 GHz) and I've been very happy with it so far. However, when I brought it home, I've had nothing but issues trying to connect to my wireless network. It's a Netgear, and you can read more about it at the following link:
    http://www.netgear.com/products/details/WGT624.php
    It works great with my Windows XP Desktop (HP Pavilion 1250n) and PowerBook G4. It works with no password, 40-bit WEP and 128-bit WEP. But not with the MacBook Pro. However, my MacBook Pro has worked at my office and StarBucks, so it works sometimes. Is there something special I have to set on my router for it to work with the MacBook Pro?

    I also had problems with wireless connectivity while trying to access a netgear WGR614 albeit a v2 base station.
    The problem was that I could not see the network from my MBP. It just didn't appear. The network was open with zero security. However my dell laptop was able to connect fine.
    I noticed in the MBP config that the wireless locale was set to USA. I however live in Ireland. I then changed the locale inside the netgear 'wireless settings -> region' to United States. Now everything works fine. My dell didn't seem to care either way. It just picked up the new 'USA - region' based wireless network.
    The problem now is that I travel quite a lot and usually I won't have the luxury of being able to change the routers configuration.
    Is this just a MBP and Netgear WGR614 issue?
    If this happens in the future is there a way for me to change the AirPort wireless card locale?
    MBP 15" Core 2 Duo   Mac OS X (10.4.8)  

  • Error occured when connect to MySql Databse in Dreamweaver

    Hello! I met a problem when connect to Mysql Databse in
    Dreamweaver
    Details:
    My Php Environment: Php 5.2.2+ MySql 5.0.4 + IIS 6.0 + DW IDE
    + WinXP SP2,
    All necessary sevice started(Actually I have never stopped
    any Windows service).
    Php installed (IIS + CGI) and tested successfully in DW
    MySql Installtion(Typical Install with extensions ) and
    configuration are both OK.
    Configuration Details:
    For configuration type, select Detailed Configuration.
    For server type, select Developer Machine
    For database usage, select Non-Transactional Database Only.
    For the number of concurrent connections, select Decision
    Support(DSS)/OLAP.
    For networking options, accept the default settings.
    For the default character set, accept the default setting.
    For the Windows options, select both options – Install
    As Windows Service, and Include Bin Directory in Windows Path.
    For security options, enter a root password and confirmed.
    And then I Created a database "mydb" with 3 tables inside by
    "MySql Command Line Client",
    ...... (Approach Obmit here)
    Open "MySql Command Line Client":
    Type >mysql Show Database mydb;
    Show a list with 3 tables(Created Successfully)
    Then In DW,
    Open my Php webpage,
    Then from Database Panel>MySql Connection,
    Connect Name:myconn
    Mysql Server:localhost
    Username:root (Right)
    Password:111111(Right)
    Database:mydb
    Click "OK", but when DW tried to connect to MySql database,
    then DW popuped an alert dialog says "HTTP Error Code 502 Bad
    Gateway",
    I don't know what this mean and how to solve this problem,
    hope any PHP and DW expert can help me, thank you very much.

    Phoenix Wang wrote:
    > Click "OK", but when DW try to connect to MySql
    database, then popup an alert
    > dialog says "HTTP Error Code 502 Bad Gateway",
    > I don't know what this mean and how to solve this
    problem, hope any PHP and DW
    > expert can help me, thank you very much.
    How have you set up the Testing server in your site
    definition?
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Lacie network external drive + AEBS + AEX= wireless bliss?  Will this work?

    Hey everyone,
    (Just to get it out of the way, I know you can't use the USB ports on the base stations for external Harddrives) Here's what I'm trying to do. I'd like to beable to have a stand alone wireless external Network harddrive (shown here http://www.lacie.com/products/product.htm?pid=10592 ) to store all of my media and music, and at the same time beable to stream that music wirelessly to a speaker system. Yeah, I know transfer speeds will be slow and I know I could buy a Mac Mini to do this, but I don't mind the slow speed and a Mac Mini is out of my budget range right now (and I'd kinda like to wait for the Intel version )
    Okay, well I had thought all of this through with the idea that I could use the Lacie network drive wired (through ethernet cable) to my Airport Extreme Base Station which would then be wired to my airport express. Then the fatal flaw hit me. No port to connect internet access.
    So that was my original idea, here are my backup ideas. I was hoping you guys might beable to give me feedback on what might work best and what won't.
    First idea: Use my relatively old Netgear Wireless router (shown here http://www.netgear.com/products/details/WGR614.php) hook ethernet and the Lacie HD into that, send a cable over to the airport express, disable wireless on the Netgear and have the airport express handle all wireless activity. What do you guys think? Could I use my powerbook as the hub where I could choose a song on itunes and it would find it on the wireless HD and stream it to the wireless speakers through the Express?
    Second idea: Hook the Lacie HD into the Airport Express, hook the ethernet into the Airport Extreme and set them up using the WDS system in the admin utility. The Extreme would be the Main and the express would be the satellite. Do you think this would work?
    Last idea: Hook the Lacie HD and the ethernet into the Airport Extreme, and have the airport express set up with WDS again as a satellite just to stream music and to print. Close to just the reverse of the second idea. Do you think this might work better?
    And of course there is always, just getting really frustrated and saying forget the whole thing lol.
    Thanks for anyones input here. I really appreciate it. I really think this could turn out to be very helpful to a lot of people if it works. I've looked everywhere for a good solution for a stand alone wireless media hub + wireless music streaming and only came up with lots of people asking questions and no one having a solid answer. So hopefully we can work out something that really works for everyone on this great forum.
    Matthew

    Have you had any success with this?
    I have a powerbook, Imac, and a Lacie 500GB and an airport extreme. I am trying to set the network up so that both my powerbook and Imac can connect to the Lacie wirelessly.

  • Dynamic Jump Menu Problem in CS3

    I'm trying to create a link in a Jump Menu to a Detail Page.php by setting the parameters in the menu item to match a value in a recordset. When selected from the menu, a new page should open with a subset of the original php page. So far I haven't found a method to transfer a value in the menu to a url parameter which can be used by the target php page. Any suggestions appreciated.
    Regards to the List

    Nevermind. I was over-thinking the problem and adding dynamic parameters, when a simple solution was all that was required.
    Regards to the list.

  • Router for macbook

    What is the best and most reliable wireless router to buy for a macbook?
    Macbook   Mac OS X (10.4.6)  

    Hi All
    I have the Netgear WGU624 router (108 mbs speed) that was already setup on an existing PC Network in my home using WPA encryption.
    http://www.netgear.com/products/details/WGU624.php
    In the last 2 months I have networked in both a MacBook and a MacBook Pro right out of the box during initial setup with no trouble at all. This router cost about $75 at CompUSA. I have excelelnt reception all over the house even with the router not being centrally located.
    I have been very impressed with Netgear's products and they cost less than the other brands
    d
    MacBook Pro 15" 2.16GHZ, 2GB & MacBook, Black, 2GHZ, 1GB   Mac OS X (10.4.6)   iPOD 60GB, iPOD 30GB, & 2 eMachine Desktops

  • Another Express cs. Extreme question

    I'm thinking this should be an easy one, but I need a little clarification.
    Here's my setup: My wife has a G4 iMac on our main floor connected to a cable modem and router via ethernet. I have a workstation dual-core Mac in the basement also connected by ethernet. My daughter has a G4 iBook with an Airport Extreme card so she can connect to the internet at school. My son will get a Mac for graduation this summer, so we'd like to set up a wireless network for them to use, but we don't necessarily want the kids to have internet access in their rooms upstairs. Also, since my wife and I already have wired connections, can we keep that and save the expense of get Airport cards for our Macs?
    One more thing, my son got a Nintendo Wii this Xmas and we'd like to connect that through a Wi-Fi connection.
    Given our situation, which would be our better choice: an Airport Extreme base station or Aiport Express?
    Thanks very much for clearing up the confusion.

    Your Network will be pretty straight forward with the use of a Multiport Wireless Router similar to the one shown here.
    http://www.netgear.com/products/details/WGR614.php
    And Here.
    http://www.linksys.com/servlet/Satellite?c=LProductC2&childpagename=US%2FLayout&cid=1138056788757&pagename=Linksys%2FCommon%2FVisit orWrapper
    Remember there are literaly hundreds of different choices by a all the different manufactures out there and several are very very good, and work well.
    Either of these will allow for both you and your wife to be Hardwired and your kids to be wireless, or if you and your wife have wireless cards you can all be wireless.
    Hope this helps
    Don

  • Seeing Vista PC folders from a MacBook Pro on a wireless network

    I have a 2 PCs running Windows Vista and a MacBook Pro. I also have Time Capsule. The Time Capsule is connected to my main PC by Ethernet cable and to the MacBook and my other PC wirelessly.
    I share my Internet Connection with my PCs and Mac which works fine. I use Time Machine to back up my Mac - which works fine. I use Windows OneCare to back up my main PC via Ethernet onto the Time Machine as a hard disk - which also works fine.
    My PCs and my Mac are all set up to connect to my home wireless network. I can see both my Macintosh and my wireless PC from my main PC as networked locations and can navigate to sub-directories, folders and documents on my Mac from the main PC and to shared folders on my wireless PC. I can also see shared folders on my main PC from my wireless PC.
    However, I cannot see how I can do the reverse operation and access shared files and folders on my PCs from my Mac. Neither the main PC nor my wireless PC appear as shared locations in Finder and I don't know how to use the Mac equivalent of Windows Explorer to navigate via the wireless network to my PCs. Can someone advise please?

    I was able to do it using my router.
    On my netgear router (it has a very simple webbrowser-based setup and maintenance system) had the options to assign and reserve a particular ip address for each device connected to it. (It did this not by the computer name but my the MAC address of the network interface. Eg. My powerbook's airport card ALWAYS has an i.p. address of 192.168.0.7, whereas if I connect my powerbook via ethernet, it uses 192.168.0.2)
    These could have been any ip addresses that I wished for. These two just happened to be the next available ones.
    You should look at your network's router or switch's setups/manuals etc to find out if you're able to do this with your particular hardware.
    I use just a simple modem/router/wireless access point all rolled into one:
    http://netgear.com/products/details/DG834G.php
    If you're working in an office environment, the hardware will probably be of fairly good standard, and therefore should allow you to do this.
    Glad I was able to help a little with my last message, keep replying untill we get this problem sorted out.
    DAN
    P.s. I have just had another little look at my VNC (realvnc) server software. In the configuration of the server, in the;
    "allow connections from local computer only and" section of the options I have got my two ip addresses (my ethernet and airport ones) stored to allow without needing confirmation.
    This MIGHT be another way to solve your problem. But again, it all resorts back to you needing static ip addresses, not dynamic ones.
    Let me know how you get on!

  • Router/modem

    Hi
    I am finally able to get ADSL in my area, and have two macs (with AE cards) and a pc (with a wireless card) which I wish to be able to connect to the internet. I wish to do this wirelessly. I don’t have a DSL modem or a router, so I am looking to get a router with a built in modem and wireless capability, as this seems to be the most logical. However, there are so many products out there that I don’t know which one to pick. I have searched through the forums and can’t find a satisfactory answer. As I have said, it is for use at home, and only for three computers.
    Hence I would like some recommendations for a good quality modem/router which will give good security and a decent signal strength.
    Thanks

    yes, for a cable connection you need separate modem. won't your internet service provider provide you with one? that is usually the norm. if not, netgear seems to have one http://www.netgear.com/products/details/DG834.php d-link also seems to have a variety of dsl routers. http://www.dlink.com/products/category.asp?cid=38&sec=0 the netgear seems kind of shady though. it lists as requirements a number of windows operating systems, then says any os with tcp/ip, which, i guess, would be mac os x. but they don't state mac specifically. my preference would be for the extreme because it has apple support, and it's more aesthetically pleasing. [ 8 D ]

  • Wireless relay station possible?

    I'm a complete networking novice, so please ignore my Level 4 rating and respond in words of one syllable if possible. I haven't known which of the Airport forums to post in, so pardon me if this isn't the best place.
    I have a home network that's used only to share a cable internet connection among my wife's Dell PC hardwired to an Asante 802.11G wireless router that sits beside it in one corner of the first floor; my own Titanium Powerbook G4 with original Airport card, connecting wirelessly from my upstairs office; and from time to time, my son and daughter who have, respectively, an Aluminum PB G4 with Airport Extreme card, and a Titanium PB G4 with Sonnet Aria Extreme card. The Sonnet card uses Airport driver software transparently. Neither the Albook nor (during its current visit) the Tibook with Sonnet card is reliably able to connnect to the router from more than about 8 feet away. My own Tibook has far more range than either of the other PBs: up to 50' in some locations in the house. Its normal position is about 20-25' (straight-line distance) from the router, and I connect and stay connected very dependably.
    It would be very helpful if I could install a wireless relay station or signal booster somewhere that would enable my son and daughter to connect wirelessly from their own rooms (which are farther from the router than my office), instead of having to camp with their Powerbooks in my wife's crowded office to go online. Moving the router isn't a good option; the geography of the house would make it very awkward. Running ethernet cable from my wife's office all through the house is an extremely unappealing last-resort option that I'd have to hire someone to do, since I don't know how to snake wires through walls. But I could run a cable to the other end of the first floor without too much difficulty, if driven to do so. I would prefer to plug something into a wall outlet on the second floor, set up any necessary software, and have things just start working for the kids in their rooms. Is that a possibility?

    Neither the Albook nor (during its
    current visit) the Tibook with Sonnet card is
    reliably able to connnect to the router from more
    than about 8 feet away.
    If this is the case it sounds more like an interference issue.
    AirPort: Potential sources of interference
    http://docs.info.apple.com/article.html?artnum=58543
    My own Tibook has far more
    range than either of the other PBs: up to 50' in some
    locations in the house. Its normal position is about
    20-25' (straight-line distance) from the router, and
    I connect and stay connected very dependably.
    What happens if you switch the router to b mode only with the flaky clients?
    Running ethernet cable from my wife's office
    all through the house is an extremely unappealing
    last-resort option that I'd have to hire someone to
    do, since I don't know how to snake wires through
    walls. But I could run a cable to the other end of
    the first floor without too much difficulty, if
    driven to do so.
    This would be the best choice as it would ensure best possible reception.
    I would prefer to plug something
    into a wall outlet on the second floor, set up any
    necessary software, and have things just start
    working for the kids in their rooms. Is that a
    possibility?
    You can't use an Airport Express to extend the router you currently have.
    In theory you could get two Airport Express units, wire one to the router and configure the other to extend the new Airport network.
    Not used it myself, but this could be an option.
    http://www.netgear.com/products/details/XE102.php
    iFelix

  • PHP/MySQL current detail item indicator

    I'm building a site with CSS that uses PHP/MySQL for database
    components. My "detail" page of a given set of items will have a
    row of thumbnails at the bottom representing the entire query set.
    I want to highlight the currently featured item within those
    thumbnails so the user can identify where they are at.
    I'm thinking I need to compare the ID key from the URL to the
    ID key in the thumbnail set. If they match, the string would output
    a different character embedded in a div ID so I could use CSS to
    highlight the current item.
    I think I'm on the right track but I'm a novice at PHP. How
    would I code this?

    >if so can you advise me on the correct syntax to use as I'm not fluent in php.
    I'm not a php developer so don't trust me on anything here.
    >SELECT *
    >FROM photos_tbl
    >WHERE install_ID = ["installnumber"]
    Here you are telling the where clause to look for an install_ID equal to the string "installnumber", which obviously is not correct.  Is "installnumber"  a variable you have created somewhere in the script? If so, then to create your SQL string you would use
    "SELECT *
    FROM photos_tbl
    WHERE install_ID =" . $installnumber
    Similar problem here
    >SELECT *
    >FROM photos_tbl
    >WHERE install_ID = "rsDetail.install_UID"
    You would not put variables inside of quotes. It would be something like
    "SELECT *
    FROM photos_tbl
    WHERE install_ID = " . $rsDetail.install_UID

Maybe you are looking for