Forum: PHP 22 Days Ago |
| Replies: 3 Views: 486 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... |
Forum: PHP 24 Days Ago |
| Replies: 4 Views: 465 Thanks for your help. This should work. The problem is that there are two php files being used. When I click on the upload button on my first PHP page, the new PHP page loads, executes the upload,... |
Forum: PHP 25 Days Ago |
| Replies: 4 Views: 465 Hi there,
I have some code which quite nicely uploads PDF files to the server:
if((!empty($_FILES["uploaded_file"])) && ($_FILES['uploaded_file']['error'] == 0)) {
//Check if the file is... |
Forum: PHP Oct 2nd, 2009 |
| Replies: 1 Views: 471 For those of you could not figure this one out, after a few tries I got it:
$users = new DOMDocument();
$users->load("officedata.xml");
$suser = simplexml_load_file("officedata.xml");... |
Forum: XML, XSLT and XPATH Oct 2nd, 2009 |
| Replies: 1 Views: 694 For those of you could not figure this one out, after a few tries I got it:
$users = new DOMDocument();
$users->load("officedata.xml");
$suser = simplexml_load_file("officedata.xml");... |
Forum: XML, XSLT and XPATH Oct 1st, 2009 |
| Replies: 1 Views: 694 Hi there,
I am trying to delete XML nodes using PHP. Here is a sample of my xml file.
<users>
<user>
<fullname>PC1</fullname>
<floor>4</floor>
</user>
<user> |
Forum: PHP Oct 1st, 2009 |
| Replies: 1 Views: 471 Hi there,
I am trying to delete XML nodes using PHP. Here is a sample of my xml file.
<users>
<user>
<fullname>PC1</fullname>
<flooor>4</floor
</user>
<user> |
Forum: HTML and CSS Sep 13th, 2009 |
| Replies: 2 Views: 836 Thanks for your reply! 98% better now:
http://www.laudontech.com/temp/pceditor.php
Just a few more sizing tweaks and it should look the same on IE. Any idea how I can get a bit of spacing... |
Forum: HTML and CSS Sep 12th, 2009 |
| Replies: 2 Views: 836 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:
http://www.laudontech.com/temp/pceditor.php
Any... |
Forum: PHP Aug 12th, 2009 |
| Replies: 2 Views: 858 Thanks for your reply. When I change that line, the XML data is not updated at all. I believe that the simpleXML syntax for updating a node needs to have a certain format. Perhaps I am just... |
Forum: PHP Aug 12th, 2009 |
| Replies: 2 Views: 858 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... |
Forum: PHP Aug 11th, 2009 |
| Replies: 2 Views: 434 I have taken a brief look into SimpleXML and have created the following. I just can't get the XML to update:
$file = 'officedata.xml';
$xml = simplexml_load_file($file);
$lastname =... |
Forum: PHP Aug 11th, 2009 |
| Replies: 2 Views: 434 Hi there,
I am trying to update a node in an XML file using PHP.
Here is the XML:
<users>
<user>
<id>1</id>
<firstname>Bob</firstname> |
Forum: ASP Jun 26th, 2009 |
| Replies: 0 Views: 502 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... |
Forum: HTML and CSS May 15th, 2009 |
| Replies: 2 Views: 517 Hi there,
I have a web page that looks different in Firefox than in IE. Here is the page:
http://www.laudontech.com/exhibitfloorplans
The specific things I find odd are:
1. Divs with... |
Forum: HTML and CSS May 5th, 2009 |
| Replies: 5 Views: 1,375 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... |
Forum: JavaScript / DHTML / AJAX Mar 18th, 2009 |
| Replies: 1 Views: 389 Would something like this work:
function testIIS(){
var http1 = getHTTPObject();
http1.open("GET", "http://devsptl/test2/test.txt", true);
http1.onreadystatechange = function() {
if... |
Forum: JavaScript / DHTML / AJAX Mar 18th, 2009 |
| Replies: 1 Views: 389 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... |
Forum: HTML and CSS Feb 6th, 2009 |
| Replies: 2 Views: 867 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:
http://www.laudontech.com/temp/Query.htm ... |
Forum: PHP Jan 26th, 2009 |
| Replies: 5 Views: 408 Thanks...
Lets see....This will work for the last case, that is, there is a layer1 and layer2 defined, but no layer3:
$query resolves to "Layer1,Layer2"
However, if you define layer2, and... |
Forum: PHP Jan 26th, 2009 |
| Replies: 5 Views: 408 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... |
Forum: ASP.NET Oct 27th, 2008 |
| Replies: 3 Views: 1,336 Thanks for your reply. I would like the data, not the html. Do you have a suggestion on how to export the output of a SQL data source instead? |
Forum: ASP.NET Oct 23rd, 2008 |
| Replies: 3 Views: 1,336 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... |
Forum: ASP.NET Oct 22nd, 2008 |
| Replies: 1 Views: 817 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... |
Forum: HTML and CSS Jun 5th, 2008 |
| Replies: 4 Views: 2,700 Thanks, works like a charm! nice tip for debugging as well.
M |
Forum: HTML and CSS Jun 5th, 2008 |
| Replies: 4 Views: 2,700 Thanks for the reply Mike. All I am trying to do is get the input box to start editing if I place my cursor in it. The only way I can enter data into the box is to use tab to highlight it first. ... |
Forum: HTML and CSS Jun 5th, 2008 |
| Replies: 4 Views: 2,700 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... |
Forum: XML, XSLT and XPATH Jun 4th, 2008 |
| Replies: 0 Views: 1,630 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:
... |
Forum: Pay-Per-Click Advertising Apr 5th, 2008 |
| Replies: 5 Views: 3,067 It's a good thing they weren't skinny dipping in their pool like some of these other unfortunate Google Street View victims:
http://streetviewgallery.corank.com |