User DGM - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T20:15:59Zhttp://stackoverflow.com/feeds/user/14253http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1757451/finding-parent-of-nested-resource-that-has-multiple-types-of-parents0finding parent of nested resource that has multiple types of parentsDGM2009-11-18T16:57:03Z2009-11-18T18:14:58Z
<p>Given a model like:</p>
<pre><code>class PhoneNumber < ActiveRecord::Base
has_many :personal_phone_numbers
has_many :household_phone_numbers
has_many :organization_phones
has_many :people, :through => :personal_phone_numbers
has_many :households, :through => :household_phone_numbers
has_many :organizations, :through => :organization_phones
end
</code></pre>
<p>When viewing a phone number, I'm probably going to be viewing it as a nested resource, so the controller is going to have a params item of one of <code>person_id</code>, <code>household_id</code>, or <code>organization_id</code></p>
<p>I need the view to have a <code>link_to "Return", ...</code> that returns to the correct resource that we came to the phone number from. How should I do this?</p>
http://stackoverflow.com/questions/1743455/rails-console-wont-always-call-accessor-override-specified-in-model1rails console won't always call accessor override specified in modelDGM2009-11-16T17:00:09Z2009-11-16T17:00:09Z
<p>I have a simple model:</p>
<pre><code>class Person < ActiveRecord::Base
def dob=(dobstr)
raise "oops"
end
def virtualdob=
raise "virtual oops"
def
end
</code></pre>
<p>dob is a table column. When I try to set it from a view, it correctly crashes ... but when I try to set it via the rails console, it never gets called... but calling the virtual attribute does raise the error.</p>
<pre>
>> a=Person.first
......
>> a.virtualdob="d"
RuntimeError: virtual oops
from /...../app/models/person.rb:105:in `virtualdob='
from (irb):7
>> a.dob="f"
=> "f"
</pre>
<p>I want to override dob= to use Chronic to parse date in a more forgiving manner, before validations. Making a different attribute is not acceptable, as views such as the rest_in_place plugin need the orginal attribute name.</p>
http://stackoverflow.com/questions/1677992/why-use-a-templating-engine-with-a-framework/1678003#16780033Answer by DGM for Why use a templating engine with a framework?DGM2009-11-05T02:46:30Z2009-11-05T02:46:30Z<p>Unless you allow for short tags, </p>
<pre><code>{$foo}
</code></pre>
<p>is much more readable than</p>
<pre><code><?php echo $foo; ?>
</code></pre>
<p>Multiplied over a large project, it adds up.</p>
http://stackoverflow.com/questions/1629044/should-rails-redirectto-be-sending-html1Should Rails redirect_to be sending html?DGM2009-10-27T06:27:49Z2009-10-27T16:34:31Z
<p>In most frameworks, sending a redirect means setting the HTTP headers and exiting without sending any HTML data back to the browser. However, using Firebug I see that Rails is not following this convention:</p>
<pre><code>def update
@phone_number = PhoneNumber.find(params[:id])
if @phone_number.update_attributes(params[:phone_number])
flash[:notice] = "Successfully updated phone number."
redirect_to @phone_number
else
render :action => 'edit'
end
end
</code></pre>
<p>In response, the headers have:</p>
<pre><code>Connection close
Date Tue, 27 Oct 2009 06:17:00 GMT
X-Runtime 28
Location http://localhost:3000/phone_numbers/1999521184
</code></pre>
<p><strong>and</strong> it also has the results from the show action, <em>twice</em></p>
<p>Any ideas why?</p>
http://stackoverflow.com/questions/1629044/should-rails-redirectto-be-sending-html/1630716#16307161Answer by DGM for Should Rails redirect_to be sending html?DGM2009-10-27T13:13:30Z2009-10-27T13:13:30Z<p>Interesting. It appears that firebug is lying to me. Using WireShark, I confirmed that it is in fact not sending the page data, just the redirect and a basic "You are being redirected" message. Looks like a bug with firebug.</p>
http://stackoverflow.com/questions/1607594/creating-proper-layouts-table-like-with-css/1607616#16076167Answer by DGM for Creating proper layouts (table-like) with CSSDGM2009-10-22T14:26:50Z2009-10-22T14:26:50Z<p>Tables are not always evil. If your data looks tabular, use a table!</p>
http://stackoverflow.com/questions/1589361/is-https-retained-on-relative-form-action-urls/1589367#15893671Answer by DGM for Is https retained on relative form action URLs?DGM2009-10-19T15:28:34Z2009-10-19T15:28:34Z<p>It should retain the https part.</p>
http://stackoverflow.com/questions/85816/force-https-how-is-it-possible/85846#858461Answer by DGM for Force HTTPS. How is it possible?DGM2008-09-17T17:54:29Z2009-10-19T09:22:48Z<p>Use $_SERVER['HTTPS'] to tell if it is <a href="http://en.wikipedia.org/wiki/Transport%5FLayer%5FSecurity" rel="nofollow">SSL</a>, and redirect to the right place if not.</p>
<p>And remember, the page that displays the form does not need to be fed via HTTPS, it's the post back URL that needs it most.</p>
<p><em>Edit</em>: yes, as is pointed out below, it's best to have the entire process in HTTPS. It's much more reassuring - I was pointing out that the post is the most critical part. Also, you need to take care that any cookies are set to be secure, so they will only be sent via SSL. The mod_rewrite solution is also very nifty, I've used it to secure a lot of applications on my own website.</p>
http://stackoverflow.com/questions/1569608/how-do-i-escape-all-special-characters-in-access-jet-sql1How do I escape all special characters in Access Jet SQL?DGM2009-10-14T23:50:15Z2009-10-16T07:23:46Z
<p>I'm trying to change a password with a DDL statement like:</p>
<pre><code>CurrentProject.Connection.Execute "ALTER USER barney PASSWORD "[]!@#$%^ oldpassword"
</code></pre>
<p>Yes, that's a nasty password, but someone tried something like that. Notice the beginning quote of the password is not part of the sql syntax here. I need something like <code>mysql_real_escape_string()</code> but for VBA. Any hints?</p>
http://stackoverflow.com/questions/1516904/jquery-div-fading-trouble/1517117#15171171Answer by DGM for JQuery - div fading troubleDGM2009-10-04T18:56:37Z2009-10-04T18:56:37Z<p>It works for me, firefox on OSX. Make sure that your id's are unique, if you have a duplicate it might not work right. Also, your style: block is redundant, divs are blocks by default.</p>
http://stackoverflow.com/questions/1480306/can-i-add-a-user-to-access-with-vba-instead-of-using-the-builtin-user-and-group2Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?DGM2009-09-26T02:55:05Z2009-09-26T05:54:31Z
<p>While making an access database, I'd like to make it as idiot proof as possible. This means, I don't want the client to have to use the access components; I'd rather have my own form that just takes a username and password and adds it to the correct groups automatically.</p>
<p>I thought I had some code that would work:</p>
<pre><code>Dim usr as User
set usr = new User
usr.Name="Foo"
'set other properties'
DBEngine.Workspace(0).Users.Append(usr)
</code></pre>
<p>but it tells me that the operation is not supported. Is there any other way to get a new user inserted into the security file?</p>
http://stackoverflow.com/questions/1480306/can-i-add-a-user-to-access-with-vba-instead-of-using-the-builtin-user-and-group/1480507#14805070Answer by DGM for Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?DGM2009-09-26T05:37:40Z2009-09-26T05:37:40Z<p>After much hair pulling and an epic battle against lacking documentation, here it is. You <strong>must</strong> use ADOX. Link it in in the references menu in the VBA editor.</p>
<pre><code>Dim cat as ADOX.Catalog
Dim user as ADOX.User
Set cat = New ADOX.Catalog
cat.ActiveConnection = CurrentProject.Connection
usr = new ADOX.User
usr.Name = "joe"
cat.Users.Append usr
' must change password on user after inserted '
cat.Users("joe").ChangePassword "", "pass"
cat.Users("joe").Groups.Append "Users" ' have to be in this to open database '
cat.Users("joe").Groups.Append "MyCustomGroup"
Set cat = Nothing
Set usr = Nothing
</code></pre>
<ul>
<li>There are other Objects that have connection objects. They do not work. CurrentProject.Connection is the only one that worked for me. </li>
<li>Some documentations show a change password on the user object before appending it to the Users catalog. That did not work right. </li>
<li>The various documentations seemed to show that the Users Collection could do this, but it could not append - it needs the ADOX Catalog for that.</li>
</ul>
http://stackoverflow.com/questions/1475306/how-do-i-hide-var-passing-info-in-the-url-if-i-have-no-form-tags/1475394#14753945Answer by DGM for how do i hide var passing info in the url if i have no form tags?DGM2009-09-25T04:13:06Z2009-09-25T15:04:28Z<p>It's a bad idea. GET is used for reading, POST is used for updating. A better solution would be to use some sort of mod_rewrite to make friendly URLS. Often called SEO friendly URLS...</p>
<p>Yes, you can POST with a <a href... but you have to have a lot of ugly javascript to do it... which breaks all sort of standard conventions.</p>
<p><strong>Update, combining some new information</strong></p>
<p>@FDisk has the simplest solution below, but I would add a condition to it which would allow existing files to be passed through directly by the webserver without having to run it through PHP:</p>
<pre><code>RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]*)$ /index.php?content=$1 [L]
</code></pre>
<p>That way, a request to /images/bar.png will be served directly from the filesystem if that image exists. </p>
<p>Note, that your page does not necessarily need to have ".html" on the end anymore. So your URL could look like: <code>http://example.com/about</code> which would then be converted to: <code>index.php?content=about</code></p>
<p>Taking it one step further from the link you listed in your post, you could then parse the url for various parameter. The example you looked up stuffed them into <code>[$_GET, $HTTP_GET_VARS, $_REQUEST]</code> respectively, but I think that's not such a good idea. Just make your own array of parameters.</p>
http://stackoverflow.com/questions/1387587/cache-data-in-php-session-or-query-from-db-each-time/1387625#1387625-1Answer by DGM for Cache data in PHP SESSION, or query from db each time?DGM2009-09-07T05:10:23Z2009-09-07T05:10:23Z<p>Ultimately, you have to code both and test it. There are so many factors involved, it could gor either way; only your precise environment can tell for sure.</p>
http://stackoverflow.com/questions/1360353/what-is-the-standard-casing-with-database-tables-and-fields/1360366#13603660Answer by DGM for what is the standard casing with database tables and fieldsDGM2009-09-01T03:19:11Z2009-09-01T03:25:08Z<p>There is not standard defined by a database (or if there were, it would depend on the database) but many frameworks suggest standards. </p>
<p>For example, MS Access often uses a prefix like <code>tblPeople</code> notation, whereas Ruby on Rails would call the table <code>people</code> and <code>use_underscores_between_field_words</code>. </p>
<p>It really depends on the environment and culture that most often uses that environment.</p>
http://stackoverflow.com/questions/1355521/no-maxx-y-function-in-access0No max(x,y) function in AccessDGM2009-08-31T02:12:30Z2009-08-31T14:33:56Z
<p>Can someone explain to me how VBA for Access could ship without a simple <code>Max(x,y)</code> Function?</p>
<p>I know it can be done: <code>IIf(x > y, x,y)</code> but really... why?</p>
http://stackoverflow.com/questions/1315954/forcing-ending-tags-in-html-segments-or-ignoring-missing-ending-tags/1315970#13159700Answer by DGM for Forcing ending tags in HTML segments or ignoring missing ending tagsDGM2009-08-22T13:17:18Z2009-08-22T13:17:18Z<p>If you use php, an excellent solution is <a href="http://htmlpurifier.org" rel="nofollow">HTMLPurifier</a>. It will clean it up and make it completely safe to retransmit.</p>
http://stackoverflow.com/questions/1306480/is-there-a-smtp-mail-transfer-library-in-php/1306522#13065220Answer by DGM for Is there a SMTP mail transfer library in PHPDGM2009-08-20T14:19:32Z2009-08-22T13:12:02Z<p>I use <a href="http://pear.php.net/package/Mail" rel="nofollow">Pear's Mail</a> class.</p>
<p><strong>EDIT</strong></p>
<p>After re-reading this, I see there's more to it than just a library. You are asking to send direct to the remote MX.</p>
<p>Why reinvent the wheel? Set up an instance of postfix on the server, which only listens to connections from the web server... and let an MTA do what it does best. Hand off the messages from php to a real mail server and move on.</p>
<p>In the case of ISP's that block outbound port 25 and force the use of a smarthost, this also allows you to restrict the rate of messages sent to the smarthost.</p>
<p>Lastly, sending straight to the end MX from your php script is a bad idea, because if you send to me, I'll never get it. I and many other sites use "greylisting" to reduce spam, which denies all initial requests with a 450 temporary error. Real MTA's will try again, but unless you implemented a delay queue and try again, your message will never go through.</p>
http://stackoverflow.com/questions/1015830/why-extremely-occasionally-will-one-of-bof-eof-be-true-for-a-new-non-empty-record/1306040#13060400Answer by DGM for Why extremely occasionally will one of bof/eof be true for a new non-empty recordsetDGM2009-08-20T12:58:55Z2009-08-20T12:58:55Z<p><a href="http://stackoverflow.com/questions/1303159/why-is-the-newrecord-property-lying-to-me/1305998#1305998">Here's a possible solution</a></p>
<p>It could be that your form or module has gotten corrupted. Export/Import the affected module or form, or try the /decompile option. In my case a query was coming back empty when it shouldn't have, but I think the core problem could be similar.</p>
http://stackoverflow.com/questions/1303159/why-is-the-newrecord-property-lying-to-me0Why is the NewRecord property lying to me?DGM2009-08-19T23:24:04Z2009-08-20T12:52:04Z
<p>I'm at a complete loss, a form just changed behavior on me; it was working and then just stopped for no apparent reason. I'm opening it from a button:</p>
<pre><code>DoCmd.openForm "formName", , , "ID=" & Me.ID
</code></pre>
<p>Debug tracing shows that the value is set properly at this point. When the form loads, I need to set a few display items, using the OnCurrent event.</p>
<pre><code>Private sub Form_Current()
if Me.NewRecord Then
</code></pre>
<p>At that point, it says there's no record, debugging info says the recordset is BOF and EOF, as if the query didn't match. But if I run the saved query at that moment, it displays the right info. Furthermore, if I stop the execution, leaving the form open, and then hit the button again, it <em>does</em> load the data properly. I'm stumped.</p>
<p><strong>Edit</strong> - After importing the form from a backup, and retyping the changes, the whole problem went away. I'm guessing corruption, but it's a mystery how it can screw up like that.</p>
http://stackoverflow.com/questions/1303159/why-is-the-newrecord-property-lying-to-me/1305998#13059981Answer by DGM for Why is the NewRecord property lying to me?DGM2009-08-20T12:52:04Z2009-08-20T12:52:04Z<p>Renaming the problem form, and then importing the form from backup fixed it. Renaming is wise if you need to scan for changes since the backup.</p>
<p>Thanks Remou, I had forgotten about the /decompile option too, that might have fixed it.</p>
<p>While I'm answering the question, I should also add: Never run two copies of the frontend forms, whether on the same computer or multiple computers across the network... split your data, and make sure each frontend process has its own copy of the frontend. I think that contributed to the form corruption.</p>
http://stackoverflow.com/questions/1300977/monitor-postfix-server-and-ruby-response-on-ubuntu/1301019#13010191Answer by DGM for Monitor Postfix Server and Ruby response on UbuntuDGM2009-08-19T16:11:40Z2009-08-19T16:11:40Z<p>You could have a cron job send a "canary" message through, and then have another cron job test to see if the expected canary message was written to the database. (optionally deleting it, etc)</p>
http://stackoverflow.com/questions/1300990/quick-question-about-sessions-in-php/1301006#13010060Answer by DGM for Quick question about sessions in PHPDGM2009-08-19T16:09:43Z2009-08-19T16:09:43Z<p>yes, that is the purpose of session cookie.</p>
http://stackoverflow.com/questions/1125189/bash-case-syntax-meaning-of/1125235#11252350Answer by DGM for Bash case syntax - meaning of "-@"DGM2009-07-14T13:02:28Z2009-07-14T13:02:28Z<p>This is completely a guess, as I'm not familiar with all of the bash syntax, but I think it should be more like:</p>
<pre><code>@(-F|-file|-targets))
</code></pre>
<p>...which makes sense given the other answers here - @() matches one of the command arguments, and the extra <code>)</code> is part of the case structure. I just think the dash is in the wrong place.</p>
http://stackoverflow.com/questions/1123433/php-header-download-redirect/1123501#11235011Answer by DGM for php header download redirectDGM2009-07-14T04:57:38Z2009-07-14T04:57:38Z<p>I'm not following what you are asking. A header redirect looks like:</p>
<pre><code>header("Location: /path/to/new/page");
</code></pre>
<p>If you want the existing info to download, looks like you need to hit it with an id in your url:</p>
<pre><code><a href="file.php?id=<?=$file_id ?>">
</code></pre>
<p>where <code>$file_id</code> has the id of the file you are looking for. Personally, I'd put that in another file from the page that shows the listing and download link, but YMMV.</p>
http://stackoverflow.com/questions/1123465/avoid-same-javascript-css-file-load-on-different-pages-of-a-website/1123477#11234774Answer by DGM for Avoid same Javascript / CSS file load on different pages of a websiteDGM2009-07-14T04:49:21Z2009-07-14T04:49:21Z<p>If the file is in the same path, the browser should automatically cache it. You may want to explicitly specify the cache expiry time, if possible via your web server or programming environment.</p>
http://stackoverflow.com/questions/1117155/can-i-wrap-an-access-form-with-a-transaction0Can I wrap an Access form with a transaction?DGM2009-07-12T23:02:14Z2009-07-12T23:40:16Z
<p>I want to make a form the essentially creates an invoice, but using some other related data as inputs or limits; In the process of adding items to the invoice, I need to reduce the items in another table. Since the user will enter several items at a time, I'd like to issue a "START TRANSACTION" when the form loads, and then do a "COMMIT" when the form updates. Thus, if they cancel the form, the other related tables (shown via subforms) would roll back to the previous values.</p>
http://stackoverflow.com/questions/1079386/pre-filling-data-in-data-entry-form-opened-as-acformadd0Pre-filling data in data entry form (opened as acFormAdd)DGM2009-07-03T13:35:31Z2009-07-04T14:34:12Z
<p>I want to be able to click a button and open a new form for data entry, but the new form needs to have at least one item filled in from the form with the button. The data entry form will also be used for editing, so I can't just reference the first field for all uses of the form.</p>
<p>Take a simple billing system for example: I'm looking at a form that is about a person - name, address, etc. I want to click a button "Receive payment" and have a payment form come up, with the person_id already populated with the right value, ready for data entry and no other records available. OTOH, I may want to use the form from another location to browse or edit all payments.</p>
<p>Am I missing something obvious?</p>
http://stackoverflow.com/questions/1079340/mysql-connections-bottle-neck-via-php/1079416#10794166Answer by DGM for mysql connections bottle neck via PHPDGM2009-07-03T13:42:35Z2009-07-03T14:41:43Z<p>Storing a connection in a session just should not work. Don't do that. I'd be surprised if it actually reused that connection on subsequent visits, since it involves networks access, and you can't store a network connection in a file! At best, it reconnects upon the next page view, which doesn't gain you anything. At worst, you have a separate connection for every request that gets held open and not closed properly.</p>
<p><strong>edit - some more thoughts</strong></p>
<p>Furthermore, in the name of optimization, why even bother? Have you actually profiled your code and found this to be the real bottleneck? Just write the code in the most simple and clear way, and then worry about optimization when you discover a real problem that has been measured. Unless you have a <em>very</em> large site, the database connections are not the source of any bottlenecks.</p>
http://stackoverflow.com/questions/1009937/js-not-accepting-greater-than-or-less-than-signs/1009957#10099575Answer by DGM for JS not accepting <> greater than or less than signsDGM2009-06-17T23:05:23Z2009-06-18T05:32:29Z<p>Could something be changing your source material into entities? </p>
<pre><code>&gt; vs >
&lt; vs <
</code></pre>
http://stackoverflow.com/questions/436014/why-should-i-use-templating-system-in-phpComment by DGM on Why should I use templating system in PHP?DGM2009-11-26T19:03:04Z2009-11-26T19:03:04ZFor one thing, you are using php short tags, which I agree makes things nice, but you will get ostracized from the PHP community for it. Compare <code><?php echo $foo ?></code> to <code>{$foo}</code> for a fair comparison, and then smarty clearly wins for readability.http://stackoverflow.com/questions/1757451/finding-parent-of-nested-resource-that-has-multiple-types-of-parents/1757534#1757534Comment by DGM on finding parent of nested resource that has multiple types of parentsDGM2009-11-18T21:01:15Z2009-11-18T21:01:15ZActually, I didn't realize what magic polymorphic_url did. In my view, all I have to do is <code>link_to "Return", @parent</code> and it magically knows what resource to go back to.http://stackoverflow.com/questions/1743455/rails-console-wont-always-call-accessor-override-specified-in-modelComment by DGM on rails console won't always call accessor override specified in modelDGM2009-11-18T16:47:58Z2009-11-18T16:47:58ZIt has to do with the default accessor for date/time objects. I ended up using a virtual attribute and ignoring the default accessor.http://stackoverflow.com/questions/1569608/how-do-i-escape-all-special-characters-in-access-jet-sql/1570016#1570016Comment by DGM on How do I escape all special characters in Access Jet SQL?DGM2009-10-15T03:02:40Z2009-10-15T03:02:40ZI had errors when I used single quotes.http://stackoverflow.com/questions/636865/whats-the-best-programming-language-to-use-on-a-sucky-computerComment by DGM on What's the best programming language to use on a sucky computer?DGM2009-10-08T18:22:37Z2009-10-08T18:22:37ZJust go to sleep... ;)http://stackoverflow.com/questions/1480306/can-i-add-a-user-to-access-with-vba-instead-of-using-the-builtin-user-and-group/1480506#1480506Comment by DGM on Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?DGM2009-09-26T05:51:54Z2009-09-26T05:51:54ZMuch thanks, that looks much more correct. Obvious even. :)http://stackoverflow.com/questions/1480306/can-i-add-a-user-to-access-with-vba-instead-of-using-the-builtin-user-and-group/1480506#1480506Comment by DGM on Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?DGM2009-09-26T05:50:57Z2009-09-26T05:50:57Z<a href="http://msdn.microsoft.com/en-us/library/aa139977(office.10).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1480306/can-i-add-a-user-to-access-with-vba-instead-of-using-the-builtin-user-and-group/1480506#1480506Comment by DGM on Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?DGM2009-09-26T05:47:03Z2009-09-26T05:47:03ZMight be nice to link to any docs on that. What about delete and password update statements?http://stackoverflow.com/questions/1480306/can-i-add-a-user-to-access-with-vba-instead-of-using-the-builtin-user-and-group/1480506#1480506Comment by DGM on Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?DGM2009-09-26T05:44:07Z2009-09-26T05:44:07ZHoly ----------- That's a lot better than the nasty mess I ran into. 5 hours wasted.http://stackoverflow.com/questions/1480306/can-i-add-a-user-to-access-with-vba-instead-of-using-the-builtin-user-and-group/1480492#1480492Comment by DGM on Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?DGM2009-09-26T05:39:55Z2009-09-26T05:39:55ZI'll give it a try, but I think I was getting an operation not supported from the append function.http://stackoverflow.com/questions/1480306/can-i-add-a-user-to-access-with-vba-instead-of-using-the-builtin-user-and-groupComment by DGM on Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?DGM2009-09-26T05:22:41Z2009-09-26T05:22:41ZThat's a little too easy to bypass. I've got the data split from the front end, multiuser, and owneraccess queries to make sure the data can't be touched without going through the proper channels.http://stackoverflow.com/questions/1475306/how-do-i-hide-var-passing-info-in-the-url-if-i-have-no-form-tags/1475985#1475985Comment by DGM on how do i hide var passing info in the url if i have no form tags?DGM2009-09-25T14:45:20Z2009-09-25T14:45:20ZThe one problem there is that you also are passing all image and asset urls in to the script. A condition should be placed before that to skip the script if a file by that name already exists.http://stackoverflow.com/questions/1475306/how-do-i-hide-var-passing-info-in-the-url-if-i-have-no-form-tags/1475394#1475394Comment by DGM on how do i hide var passing info in the url if i have no form tags?DGM2009-09-25T14:43:36Z2009-09-25T14:43:36ZThat page has one possible way of doing things... but I would leave out the "register_globals" part, it's dangerous.http://stackoverflow.com/questions/236493/what-are-the-arguments-in-favor-of-php-closing-tags-for-php-only-files/236704#236704Comment by DGM on What are the arguments IN FAVOR of PHP closing tags for PHP only files?DGM2009-09-07T05:24:04Z2009-09-07T05:24:04ZI just think that a php file is not an xml file... Don't run xml tools on a php file, run it on the output of the php file.http://stackoverflow.com/questions/236493/what-are-the-arguments-in-favor-of-php-closing-tags-for-php-only-files/236872#236872Comment by DGM on What are the arguments IN FAVOR of PHP closing tags for PHP only files?DGM2009-09-07T05:22:50Z2009-09-07T05:22:50ZOmitting a closing php tag has nothing to do with writing html/xml. PHP is not either one of those.