I don't think so - other than voluminous commenting.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"crash" <crash@bcdcdigital.com> wrote in message
news:efu77o$jsu$1@forums.macromedia.com...
>I know, and, what's worse, is your server behaviors.
Those are about the
>only thing I use DW for, and the best part of taking over
or handing over a
>DW created site - you don't have to dig through custom
code to see how data
>is being parsed.
>
> Is there any solution to that?
>
> Thanks,
>
> Jon
> "Murray *ACE*" <forums@HAHAgreat-web-sights.com>
wrote in message
> news:efu6pf$jaq$1@forums.macromedia.com...
>> >A bit OT, but do you typically create your own
select statements instead
>> >of using the Recordsets from DW?
>>
>> Lately I have been - it's much easier to do it this
way. But you
>> eliminate the Bindings panel when you do that.
>>
>> --
>> Murray --- ICQ 71997575
>> Adobe Community Expert
>> (If you *MUST* email me, don't LAUGH when you do
so!)
>> ==================
>>
http://www.dreamweavermx-templates.com
- Template Triage!
>>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
>>
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
>> ==================
>>
>>
>> "crash" <crash@bcdcdigital.com> wrote in
message
>> news:efu5po$i7f$1@forums.macromedia.com...
>>>A bit OT, but do you typically create your own
select statements instead
>>>of using the Recordsets from DW?
>>>
>>> I've been trying to use the recordsets, but I
find them increasingly
>>> awkward for complex SQL. I'd like to still use
them, though, for
>>> "maintainability" of my sites (ie, I would like
to say they're made with
>>> DW pieces).
>>>
>>>
>>> "Murray *ACE*"
<forums@HAHAgreat-web-sights.com> wrote in message
>>> news:eftqhk$4cd$1@forums.macromedia.com...
>>>>I have a master list of passwords in a MySQL
table.
>>>>
>>>> I want to generate a new random password
that is unique.
>>>>
>>>> I am using this markup -
>>>>
>>>> $passwords=array();
>>>> $rsPasswordList = mysql_query("SELECT
contactPassword FROM
>>>> tblcontactdata",$selectData)
>>>> or die(mysql_errno()." : ".mysql_error());
>>>> for ($j=0;
$rec=mysql_fetch_array($rsPasswordList); $j++){
>>>> $passwords[]=$rec;
>>>> }
>>>> $unique='false';
>>>> for ($i=0; $unique!='false'; $i++) {
>>>> $temp = randomkeys(8); // this is generating
a random 8-character p/w
>>>> if(!array_key_exists($temp, $passwords)) {
>>>> $newPassword = $temp;
>>>> }
>>>> }
>>>>
>>>> I want to make sure that this is going to
produce a unique password.
>>>> Can you evaluate that for me, please?
>>>>
>>>> --
>>>> Murray --- ICQ 71997575
>>>> Adobe Community Expert
>>>> (If you *MUST* email me, don't LAUGH when
you do so!)
>>>> ==================
>>>>
http://www.dreamweavermx-templates.com
- Template Triage!
>>>>
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
>>>>
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
>>>>
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
>>>> ==================
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>