Search found 483 matches

by Fred
2016-02-27 12:55
Forum: ADDT
Topic: Dynamic list + "download all" button?
Replies: 1
Views: 55143

Re: Dynamic list + "download all" button?

Tony haven't done something like this myself but the way I would approach it is as follows. 1. You have the dynamic list, 2. Pass the files into an array of sorts 3. Pass the whole thing to a separate php page that can take care of the zipping and downloading. I don't think it would be necessary to ...
by Fred
2016-02-18 10:50
Forum: ADDT
Topic: Generate password while sending email?
Replies: 3
Views: 56852

Re: Generate password while sending email?

You welcome Tony.
Same here. Doing a lot of front-end coding manually but for general back-end stuff Interakt is still doing the job.
Backends tends to stay the same, List of things that needs updating. Don't think its going to change any time soon.
by Fred
2016-02-17 14:54
Forum: ADDT
Topic: Generate password while sending email?
Replies: 3
Views: 56852

Re: Generate password while sending email?

It's actually quite simple to do. Use this function and add the result into the hidden password field. <?php function getRandomString($length) { $validCharacters = "abcdefghijklmnopqrstuxyvwzABCDEFGHIJKLMNOPQRSTUXYVWZ123456789"; // add or remove characters you want to be used in the rendom...
by Fred
2016-01-31 23:25
Forum: ADDT
Topic: Multiple Image Upload ERROR 302. HTTP Flash Error
Replies: 3
Views: 9090

Re: Multiple Image Upload ERROR 302. HTTP Flash Error

Hi macJack, Personally I don't use this SB so other than "someone else" had a similar problem and he changed to something else I can't help you. I would suggest to download and try debug the error with "Firefox Developer Edition" https://www.mozilla.org/en-GB/firefox/developer/ I...
by Fred
2016-01-28 09:48
Forum: General Chit Chat
Topic: Kollection/Interakt and PHP 7
Replies: 21
Views: 69314

Re: Kollection/Interakt and PHP 7

Chris it's probably better to register on that site to download it.
If there are any upgrades to the class you will then receive a notification.

Also gives the author a download count click.

Loads of useful classes there as well.
by Fred
2016-01-17 23:24
Forum: MX Send E-Mail
Topic: Troubles with KT_Email.class.php
Replies: 12
Views: 47818

Re: Troubles with KT_Email.class.php

Thanks Waleed.
I deleted your duplicate post so that the solution can stay in the topic where it is relevant.
by Fred
2016-01-17 17:33
Forum: General Chit Chat
Topic: Kollection/Interakt and PHP 7
Replies: 21
Views: 69314

Re: Kollection/Interakt and PHP 7

I have installed this in my connection script. Haven't tested it yet.

http://www.phpclasses.org/package/9199- ... nsion.html
by Fred
2015-12-26 10:29
Forum: MX User Login
Topic: Integrate Facebook login with Interakt
Replies: 0
Views: 23519

Integrate Facebook login with Interakt

Good day,
Anyone successfully integrated the facebook login or any OAuth with the Interakt login SB?
by Fred
2015-11-14 16:40
Forum: ADDT
Topic: Store primary key as session variable after insert
Replies: 2
Views: 9387

Re: Store primary key as session variable after insert

Just a quick google search on how to get the last inserted record id.
Hope it helps.

http://www.w3schools.com/php/php_mysql_ ... lastid.asp
by Fred
2015-10-12 15:04
Forum: ADDT
Topic: custom transaction and date validation
Replies: 6
Views: 10394

Re: custom transaction and date validation

Basically you not going to do the database update from the same page as where the form is. On form submission you redirect to a page called form_validation.php (as an example) where you iterate through the POST variables comparing them against pre-defined parameters. if (isset($_POST['number'])) { i...