Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
Member Avatar for Mapper99

For some reason when I click on my simple input box, the input box does not accept focus. Has anyone seen this before? Here is a link to the webpage: www laudontech com / garmin Here is my code: [code=html]<form name="form1" method="POST" action="test5.php5"> </br> <P ALIGN=CENTER> <INPUT TYPE = "TEXT" …

Member Avatar for Mauricio_5
0
2K
Member Avatar for Mapper99

I have a very simple webpage using css. For some odd reason there is about a 20px space at the top of my page. I have no idea where this is coming from! Any ideas? Here is the page that is causing me grief: [url]http://www.laudontech.com/exhibitfloorplans/test5.php5[/url] [url]http://www.laudontech.com/exhibitfloorplans/demomaps.css[/url] Thanks in advance, Mapper

Member Avatar for JorgeM
0
704
Member Avatar for Mapper99

I have two similar nodes in an XML file. When using a CONTAINS query via XPATH, the XPATH query returns two sets of data. I would like it to only return the exact match. Any idea if this is possible? Here is my code: $uc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; $lc = "abcdefghijklmnopqrstuvwxyz" …

Member Avatar for Mapper99
0
2K
Member Avatar for Mapper99

Hi there, I have some code which quite nicely uploads PDF files to the server: [CODE] if((!empty($_FILES["uploaded_file"])) && ($_FILES['uploaded_file']['error'] == 0)) { //Check if the file is JPEG image and it's size is less than 350Kb $filename = basename($_FILES['uploaded_file']['name']); $ext = substr($filename, strrpos($filename, '.') + 1); if (($ext == "pdf") …

Member Avatar for wandi90
-1
283
Member Avatar for Mapper99

What is the best approach to merge(join) XML data?: File#1: [CODE] <users> <user> <name>Mark</name> <id>100</id> </user> <user> <name>Fred</name> <id>100</id> </user> </users> [/CODE] File#2: [CODE] <users> <user> <id>100</id> <lat>50</lat> <lon>122</lon> </user> </users> [/CODE] Desired output (only keep records where a match is found): [CODE] <users> <user> <id>100</id> <lat>50</lat> <lon>122</lon> <name>Mark</name> </user> …

Member Avatar for ivan3510
0
111
Member Avatar for Emily Banks

Microsoft has revealed a new, more comprehensive street view system, dubbed Street Slide, set to compete with Google's Street View and Bing Maps' Streetside.[ATTACH]16203[/ATTACH]According to [URL="http://research.microsoft.com/en-us/um/people/kopf/street_slide/index.html"]Microsoft[/URL], the Google and Bing systems only allow users to view city streets via an immersive 360-degree panorama or "bubble." And users can travel down …

Member Avatar for fast5
0
618
Member Avatar for Mapper99

I have some code which exports the contents of a gridview to XML. The XML is coming out with incorrect field tags: <tr> <td>Builder Damage Inspection</td> <td>request for final BDI inspection. No damage report on pre damage inspection.</td> <td>2008-07-09 3:13:59 PM</td> <td>2008-08-13 9:13:48 AM</td> <td>512135</td> <td>5450865</td> <td>CLOSED</td> </tr> Here is …

Member Avatar for hello2222
0
141
Member Avatar for Mapper99

Hi there, I am trying to get ldap_modify to change an attribute in my Active Directory. [CODE] $activeUser="Test Guy"; $floorname = "First Floor"; $entry[physicaldeliveryofficename] = $floorname $results = ldap_modify($ds,"CN=$activeUser,OU=Test,DC=LDAPSERVER,DC=COM", $entry); if (TRUE === $result) { echo "The entry was successfully modified."; } else { echo "The entry could not be …

0
106
Member Avatar for Mapper99

I have a simple jQuery click handler that animates the change of a divs background image. I would like to create some reusable code so I would not have to copy my code for every div I would like this effect on. How would I go about this? [CODE] <style …

Member Avatar for Airshow
0
153
Member Avatar for Mapper99

Hi there, I have created a web page that looks fine in all browsers, except for IE7. Any idea why? [url]http://laudontech.com/temp/mansonville/[/url] Is there some custom CSS I need for IE6 and IE7? Thanks in advance, Mapper

Member Avatar for Mapper99
0
143
Member Avatar for Mapper99

I recently implemented a try catch routine to get past an error I could not fix. Unfortunately, the page loads completely in Chrome, Safari and IE, but halts in Firefox. Any idea why? Here is the URL to the page: [url]http://laudontech.com/tools/Edit4.HTML[/url]

Member Avatar for tscman
0
136
Member Avatar for Mapper99

Any way I can remove the additional borders created when I nest a table? Here is the code I am using. [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <style type="text/css"> #leftcolumn { width: 72px; height:120px; float: left } #leftcolumn img { width:100%; height:100%; } #rightcolumn { …

Member Avatar for macgurl70
0
1K
Member Avatar for Mapper99

I have a simple web page. For some reason, one of my div's (holding a bing map), is shifted way off in the blue. Here is the link: [url]http://70.38.38.174//where-does-this-drain-to/where-does-this-drain-go.html[/url] Looks fine in Chrome/IE. Thanks in advance, M

Member Avatar for macneato
0
92
Member Avatar for Mapper99

How do I have a large image as my web page background without having the horizontal scrollbars appear? Here is the web page I am referring to: http://70.38.38.174//where-does-this-drain-to/where-does-this-drain-go.html Here is my css: body { background: #3F3F3F url(bg.jpg) no-repeat center top; color: #222222; font-family: "Helvetica Neue",Helvetica,Arial,Verdana,sans-serif; font-size: 75%; } Thanks in …

Member Avatar for drjohn
0
165
Member Avatar for Mapper99

Hi there, I am trying to delete XML nodes using PHP. Here is a sample of my xml file. [CODE] <users> <user> <fullname>PC1</fullname> <floor>4</floor> </user> <user> <fullname>PC2</fullname> <floor>3</floor> </user> </users> [/CODE] Here is my code so far: [CODE] <?php $users = new DOMDocument(); $users->load("officedata.xml"); $suser = simplexml_load_file("officedata.xml"); $count = 0; …

Member Avatar for disinfor
-1
174
Member Avatar for Mapper99

Hi there, I have some simple code that goes off and loads a bunch of tiled images into a web page. What I am trying to do is replace one of the tiles with a blank image in the event the image does not exist on the server. I am …

Member Avatar for Airshow
0
189
Member Avatar for Mapper99

I have a simple web page. Looks great in Firefox and Chrome. I can't figure out what is happening when viewing this page in IE! Anyone have this problem? Here is the page for review: [url]http://www.laudontech.com/office-floor-plans/[/url] Thanks in advance, M

Member Avatar for laura_ci
0
117
Member Avatar for Mapper99

Is it possible to get a PHP page to popup in a new page after a form post? Then, return information from the popup page to the parent page? Right now when I post my data, the browser window navigates to the new page and I have no way to …

Member Avatar for diafol
0
207
Member Avatar for Mapper99

Hi there, I am trying to delete XML nodes using PHP. Here is a sample of my xml file. [code] <users> <user> <fullname>PC1</fullname> <flooor>4</floor </user> <user> <fullname>PC2</fullname> <flooor>3</floor </user> </users> [/code] Here is my code so far: [CODE] <?php $users = new DOMDocument(); $users->load("officedata.xml"); $suser = simplexml_load_file("officedata.xml"); $count = 0; …

Member Avatar for Mapper99
0
237
Member Avatar for Mapper99

I have created a PHP page using CSS for styling. It looks great in IE. However, in Firefox, it is just a mess. Here is the link to the page: [url]http://www.laudontech.com/temp/pceditor.php[/url] Any ideas? Should I develop for Firefox, then try and fix for IE? Or, the other way around? Thanks …

Member Avatar for Mapper99
0
162
Member Avatar for newsguy

It would appear that [URL="http://ap.google.com/article/ALeqM5hq6FlGb4RaKA8uNU0xIMPsrNOgPAD8VR8Q8G0"]Google is being sued[/URL] by the owners of a house in the Franklin Park suburb of Pittsburgh because the search giants photographed the property and included it in the [URL="http://maps.google.com/help/maps/streetview/"]Google Maps street view[/URL] feature. Why anyone would want to take an interest in the boring house, …

Member Avatar for jbennet
0
261
Member Avatar for Mapper99

I have a very simple script that basically searches an xml file for a node based on the id of another node. I then update the node I found with a new value. For some reason my code is not performing the update. It is actually creating another node within …

Member Avatar for Mapper99
0
268
Member Avatar for Mapper99

Hi there, I am trying to update a node in an XML file using PHP. Here is the XML: [code=xml]<users> <user> <id>1</id> <firstname>Bob</firstname> <lastname>Marley</lastname> </user> <user> <id>2</id> <firstname>Bruce</firstname> <lastname>Springsteen</lastname> </user> </users>[/code] How can I go about searching the XML file for all tags where "id=2" and setting the firstname and …

Member Avatar for Mapper99
0
179
Member Avatar for Mapper99

Hi there, Has anyone used a DetailsView Control to Update an XML Datasource? I get an error when I try and implement the Autogenerated Edit/Delete/New buttons: Specified method is not supported. Any ideas? Thanks, Mapper

0
121
Member Avatar for Mapper99

Hi there, I have a web page that looks different in Firefox than in IE. Here is the page: [url]http://www.laudontech.com/exhibitfloorplans[/url] The specific things I find odd are: 1. Divs with "For more information..." text shows up on 3 lines in Firefox, 4 lines in IE. 2. There seems to be …

Member Avatar for MidiMagic
0
134
Member Avatar for Mapper99

Does anyone know of a way to retrieve the output of a webpage and place the output in the current web page (not using iframes)? For example, here is a simple web page (test.html): <html> This is just a test </html> I would like to take the output of this …

Member Avatar for Mapper99
0
87
Member Avatar for Mapper99

I have a web page containing a DIV with overlapping images (1 png, two gifs) When I print, I only get one of the gif in the output. Here is a sample: [url]http://www.laudontech.com/temp/Query.htm[/url] Anyone observed this behaviour before?

Member Avatar for MidiMagic
0
146
Member Avatar for Mapper99

I have a simple problem and I do not want to write 24 if statements. I am creating a URL string which requires precise formatting to work. This URL is getting created on the fly based on variables ($Layer1.','.$Layer2.','.$Layer3) I pass in to create the URL string. The URL string …

Member Avatar for uncle_smith
0
127
Member Avatar for Mapper99

If I execute this query in VS2008, data is returned OK: SELECT DESCRIPTION FROM AZTECA.REQUEST WHERE (DATETIMEINIT > TO_DATE('09/03/2008', 'MM/DD/YYYY')) AND (DATETIMECLOSED < TO_DATE('09/04/2008', 'MM/DD/YYYY')) If I execute the same query with a parameter: SELECT DESCRIPTION FROM AZTECA.REQUEST WHERE (DATETIMEINIT > TO_DATE('09/03/2008', 'MM/DD/YYYY')) AND (DATETIMECLOSED < TO_DATE(:CLOSEDDATE, 'MM/DD/YYYY')) and enter …

Member Avatar for dickersonka
0
91
Member Avatar for Mapper99

I can't seem to get a case insensitive search to work using an XPATH query. This code works: $lats = $users->xpath("/users/user[contains(.,'$fullname')]/lat"); This code does not work: $lats = $users->xpath("/users/user[contains(translate(.,'abcdefghijklmnopqrstuvwxyz'," + " 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'),'$fullname')]/lat"); Any ideas? Thanks in advance, Mapper

0
64