DGM

1,495
Reputation
73 views

Registered User

Name DGM
Member for 1 year
Seen 9 hours ago
Website
Location
Age
Nov
26
comment Why should I use templating system in PHP?
For 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 <?php echo $foo ?> to {$foo} for a fair comparison, and then smarty clearly wins for readability.
Nov
18
comment finding parent of nested resource that has multiple types of parents
Actually, I didn't realize what magic polymorphic_url did. In my view, all I have to do is link_to "Return", @parent and it magically knows what resource to go back to.
Nov
18
asked finding parent of nested resource that has multiple types of parents
Nov
18
comment rails console won’t always call accessor override specified in model
It has to do with the default accessor for date/time objects. I ended up using a virtual attribute and ignoring the default accessor.
Nov
16
asked rails console won’t always call accessor override specified in model
Nov
5
answered Why use a templating engine with a framework?
Nov
1
accepted Should Rails redirect_to be sending html?
Oct
27
answered Should Rails redirect_to be sending html?
Oct
27
asked Should Rails redirect_to be sending html?
Oct
22
answered Creating proper layouts (table-like) with CSS
Oct
19
answered Is https retained on relative form action URLs?
Oct
19
accepted Monitor Postfix Server and Ruby response on Ubuntu
Oct
15
accepted Php Is a directory writable
Oct
15
comment How do I escape all special characters in Access Jet SQL?
I had errors when I used single quotes.
Oct
14
asked How do I escape all special characters in Access Jet SQL?
Oct
8
comment What’s the best programming language to use on a sucky computer?
Just go to sleep... ;)
Oct
4
answered JQuery - div fading trouble
Sep
26
comment Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?
Much thanks, that looks much more correct. Obvious even. :)
Sep
26
comment Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?
msdn.microsoft.com/en-us/library/…
Sep
26
comment Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?
Might be nice to link to any docs on that. What about delete and password update statements?
Sep
26
comment Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?
Holy ----------- That's a lot better than the nasty mess I ran into. 5 hours wasted.
Sep
26
comment Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?
I'll give it a try, but I think I was getting an operation not supported from the append function.
Sep
26
answered Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?
Sep
26
revised Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?
typos
Sep
26
comment Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?
That'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.
Sep
26
asked Can I add a user to Access with VBA, instead of using the builtin User and Group Account box?
Sep
25
revised how do i hide var passing info in the url if i have no form tags?
added 987 characters in body
Sep
25
comment how do i hide var passing info in the url if i have no form tags?
The 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.
Sep
25
comment how do i hide var passing info in the url if i have no form tags?
That page has one possible way of doing things... but I would leave out the "register_globals" part, it's dangerous.
Sep
25
answered how do i hide var passing info in the url if i have no form tags?
Sep
17
awarded  Yearling
Sep
7
comment What are the arguments IN FAVOR of PHP closing tags for PHP only files?
I 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.
Sep
7
comment What are the arguments IN FAVOR of PHP closing tags for PHP only files?
Omitting a closing php tag has nothing to do with writing html/xml. PHP is not either one of those.
Sep
7
comment PHP echo vs PHP short tags
The php community's aversion to short tags just baffles me; removing them altogether n php6 is just final proof to me that the php design team are nuts. <?= $foo ?> is so much cleaner in a template than <?php echo $foo; ?>
Sep
7
answered Cache data in PHP SESSION, or query from db each time?
Sep
4
comment Allow user submitted HTML in PHP
Using php, this is truly the way to go. It's output is amazing and safe.
Sep
1
comment MS Access (MDB) concurrency
Until they have a way to port user level security, they can't get rid of .mdb... there's a lot of it out there, isn't there?
Sep
1
revised what is the standard casing with database tables and fields
typo
Sep
1
answered what is the standard casing with database tables and fields
Sep
1
comment Microsoft Access Append Querydef for Memo Field
One reason to use a stored append query is if you are using Access's user level permissions, and need to use the WITH OWNERACCESS OPTION to run as a different user.
Aug
31
comment No max(x,y) function in Access
yeah, and the values I am using are in the database, but in two columns of the same row. It's just not an aggregate Max, but a simple mathematical Max.
Aug
31
asked No max(x,y) function in Access
Aug
24
accepted Is there a SMTP mail transfer library in PHP
Aug
24
comment If I echo a statement and no one hears it, does it ever get echoed? (PHP cron job question)
Yes, I agree with Agor, nice title!
Aug
24
comment If I echo a statement and no one hears it, does it ever get echoed? (PHP cron job question)
As stated by zombat, the output is mailed to the owner of the cron job. It's usually a system account, and thus sometimes hard to find if you have virtual addresses and such.
Aug
24
comment Is there a SMTP mail transfer library in PHP
Well, you can still use Pear's Net_SMTP to make the connections, and probably a Pear module to look up the MX record. Then you can check the return code from the delivery attempt and cache the message yourself if you get a 4xx error.
Aug
22
comment How to get IE8 to not show my PHP page as blank
I have had some blank page issues lately related to fonts.
Aug
22
answered Forcing ending tags in HTML segments or ignoring missing ending tags
Aug
22
revised Is there a SMTP mail transfer library in PHP
added 894 characters in body
Aug
22
accepted Why is the NewRecord property lying to me?