Search found 37 matches

by frankus
Mon Apr 17, 2023 6:06 pm
Forum: Off Topic Section
Topic: Display user data from database.
Replies: 9
Views: 3012

Re: Display user data from database.

Thank you mixextra, I'll try them out.
A lot have changed since I left website creation. I need to familiarize myself with all these once again.
by frankus
Mon Apr 17, 2023 4:12 pm
Forum: Off Topic Section
Topic: Display user data from database.
Replies: 9
Views: 3012

Re: Display user data from database.

Oh, good to know. Any suggestion?
by frankus
Mon Apr 17, 2023 1:33 pm
Forum: Off Topic Section
Topic: Display user data from database.
Replies: 9
Views: 3012

Re: Display user data from database.

You can use an HTML object and place the data anywhere you want. Just like with other objects. I haven't thought of that, I'll try it. This was how I used to do it. Placing this code on the profile page. <?php error_reporting(0); session_start(); if($_SESSION['username'] != '') { $mysql_server = 'l...
by frankus
Mon Apr 17, 2023 12:50 pm
Forum: Off Topic Section
Topic: Display user data from database.
Replies: 9
Views: 3012

Re: Display user data from database.

Thanks for responding. It would need scripts using php to get the data from mysql database and show it dynamically to your web page. Here is an example of how to do it. https://www.w3schools.com/php/php_mysql_select.asp I know how get the data from mysql database and show it on web page. What I want...
by frankus
Sat Apr 15, 2023 7:39 pm
Forum: Off Topic Section
Topic: Display user data from database.
Replies: 9
Views: 3012

Display user data from database.

Guys, I want to display user data from database after they login. I want the texts to appear in text objects, so I can place them wherever I want on the their profile page. I don't want to use a table. So I need two codes for MySQL and Flat file database (text file). Any help?
by frankus
Wed Jan 23, 2019 5:37 pm
Forum: Off Topic Section
Topic: Help with code
Replies: 10
Views: 7677

Re: Help with code

Did you update ALL mysql statements? Depending on your php.ini settings, error messages were probably written to an "error_log" file. If so you'll find the file in your hosting account in the folder where the page is that caused the error. You can view the file to see the errors. EDIT: Ju...
by frankus
Wed Jan 23, 2019 12:27 am
Forum: Off Topic Section
Topic: Help with code
Replies: 10
Views: 7677

Re: Help with code

It is not as simple as just changing mysql to mysqli. E.g. $result = mysql_query($sql, $db); should be: $result = mysqli_query($db, $sql); EDIT: For the error reporting you can put the following at the start of the page : <?php error_reporting(E_ALL); ?> It didn't work out. And no error.
by frankus
Tue Jan 22, 2019 11:06 pm
Forum: Off Topic Section
Topic: Help with code
Replies: 10
Views: 7677

Re: Help with code

It didn't work. <?php error_reporting(0); session_start(); if($_SESSION['username'] != '') { $mysqli_server = 'localhost'; $mysqli_username = 'username'; $mysqli_password = 'password'; $mysqli_database = 'databasename'; $mysqli_table = 'tablename'; $db = mysqli_connect($mysqli_server, $mysqli_userna...
by frankus
Tue Jan 22, 2019 8:30 pm
Forum: Off Topic Section
Topic: Help with code
Replies: 10
Views: 7677

Help with code

I once used the below code to display user's data on a page using e.g. '.$extra2.' after login. But now it stopped. Anyone knows how to make below code work in php 5.6 server, with MYSQLi functionality? Thank you. <?php error_reporting(0); session_start(); if($_SESSION['username'] != '') { $mysql_se...
by frankus
Tue Jan 22, 2019 5:19 pm
Forum: Forms
Topic: Display data from a MySQL database
Replies: 14
Views: 16390

Re: Display data from a MySQL database

Pablo wrote: Tue Jan 22, 2019 5:00 pm I will investigate if this this can be added in a future release.
Great! Thanks!
by frankus
Tue Jan 22, 2019 4:48 pm
Forum: Forms
Topic: Display data from a MySQL database
Replies: 14
Views: 16390

Re: Display data from a MySQL database

Pablo wrote: Tue Jan 22, 2019 4:36 pm The option 'PHP5+' only affects built-in scripts, not custom code.
PHP5+ includes support for PHP7.x
Ok. I understand.
As I suggested earlier, it would be great to have a paid extension that has the functionality in question.
Thanks for your time.
by frankus
Tue Jan 22, 2019 4:19 pm
Forum: Forms
Topic: Display data from a MySQL database
Replies: 14
Views: 16390

Re: Display data from a MySQL database

Unfortunately, the code still doesn't work. The presently chosen php version on my server is PHP 5.6 and has other options like PHP 7.0, PHP 7.1, PHP 7.2 and PHP 7.3.
by frankus
Tue Jan 22, 2019 3:26 pm
Forum: Forms
Topic: Display data from a MySQL database
Replies: 14
Views: 16390

Re: Display data from a MySQL database

Pablo wrote: Tue Jan 22, 2019 3:04 pm If you set the PHP version in Page properties to "PHP5+" then all database function will use mysqli
Ok, great. Thanks!
by frankus
Tue Jan 22, 2019 2:58 pm
Forum: Forms
Topic: Display data from a MySQL database
Replies: 14
Views: 16390

Re: Display data from a MySQL database

Pablo wrote: Tue Jan 22, 2019 12:20 pm I doubt that this has anything to do with WB14.
Maybe you have upgraded the PHP version on the server?
In that case you will need to use mySQLi functions instead of mySQL
Does Login objects have mySQLi option? I see only mySQL and Flat file.
by frankus
Tue Jan 22, 2019 10:49 am
Forum: Forms
Topic: Display data from a MySQL database
Replies: 14
Views: 16390

Re: Display data from a MySQL database

I used to place below code on the account page with HTML object and use '.$ extra1 .' to display the data on page with Text object. But it stopped working after updating wwb to 14. <?php error_reporting(0); session_start(); if($_SESSION['username'] != '') { $mysql_server = 'localhost'; $mysql_userna...
by frankus
Tue Jan 22, 2019 10:36 am
Forum: Forms
Topic: Display data from a MySQL database
Replies: 14
Views: 16390

Re: Display data from a MySQL database

Pablo wrote: Tue Jan 22, 2019 10:24 am This requires a custom script.
I wish you could have this as a paid extension.
by frankus
Tue Jan 22, 2019 10:13 am
Forum: Forms
Topic: Display data from a MySQL database
Replies: 14
Views: 16390

Display data from a MySQL database

I have login objects. I want to display any of user's data on the user's account page. I want to be able to display any data at any location on the page. I'm aware of Dataviewer , Responsivedatatable , Mysqlconnector and Mysqltableeditor but they display data as list or table which I don't want. Tha...
by frankus
Tue Jun 19, 2018 9:17 am
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: SUGGEST FOR EXTENSION DEVELOPMENT
Replies: 638
Views: 1260670

Re: SUGGEST FOR EXTENSION DEVELOPMENT

[RZ] wrote: Tue Jun 19, 2018 8:28 am have you seen this? http://www.wysiwygwebbuilder.com/forum/ ... 53&t=70102
The demo doesn't show much. Does it have the things I stated I want?
by frankus
Tue Jun 19, 2018 5:35 am
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: SUGGEST FOR EXTENSION DEVELOPMENT
Replies: 638
Views: 1260670

Re: SUGGEST FOR EXTENSION DEVELOPMENT

I would love to have an HTML5 audio player with playlist and customizable button beside each song. I can link the button to a page or popup for more info. about the song. Also when a song is playing, its button displays beside it. The playlist should also have a search box, for user to search for ei...
by frankus
Tue Aug 21, 2012 8:16 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: @font-face
Replies: 36
Views: 56106

Re: @font-face

What of bulleted text?
If you can make this extension in a way that when it is just pasted on a page it affects all the text on a page that uses the same font, it will very good.
by frankus
Tue Aug 21, 2012 7:16 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: @font-face
Replies: 36
Views: 56106

Re: @font-face

Your @font-face seem not working for me. You didn't explain well whether by just placing it on a page will work on the whole text on the page that uses the font or just works only for what is written inside its property.
by frankus
Wed Jan 05, 2011 4:09 am
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

Re: ***UPDATED*** DB Technosystems Form Processor 16/02/2010

Navaldesign, Happy new year.

Concerning my above posted problem, is there still no solution yet?
by frankus
Tue Dec 14, 2010 10:39 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

Re: ***UPDATED*** DB Technosystems Form Processor 16/02/2010

There are 4 (class.phpmailer.php, class.smtp.php, index.php, mail.php)files. These were given to me by someone in the Byethost forum and the phpmailer worked flawlessly. Please dowload them from here- http://www.mediafire.com/?2xtllql6xkeuw The only file there I modified (I put the GMAIL info) is th...
by frankus
Tue Dec 14, 2010 9:56 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

Re: ***UPDATED*** DB Technosystems Form Processor 16/02/2010

I have problem with your form processor. The phpmailer works on Byethost but DBTechnosystems Form Processor isn't. Both are set to use the same gmail settings but DBTechnosystems Form Processor always gives me this below error; EMAIL FAILED Mailer Error: Language string failed to load: connect_host ...
by frankus
Thu Jul 15, 2010 8:30 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

Finally got it working :P Thanks Navaldesign!
by frankus
Thu Jul 15, 2010 1:11 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

I have sent you the necessary info through your website form. Again, thanks for your continued assistance.
by frankus
Wed Jul 14, 2010 11:27 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

I changed smtp, port 25 leaving other things intact but after pressing submit, I saw the error page with this “##error##” This thing is giving me real headache. How do I make sure the "from address" field is an email address based on my domain on the server? I suspect the visitor’s email a...
by frankus
Wed Jul 14, 2010 5:42 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

I put it back in error_reporting(0); and changed it to Sendmail. Then I got success page after clicking submit. But no email arrived.
by frankus
Wed Jul 14, 2010 5:38 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

it has gone crazy. I don't know why.
by frankus
Wed Jul 14, 2010 5:25 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

it is changed. But after clicking submit I saw;

##error##
by frankus
Wed Jul 14, 2010 5:09 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

I did that and this is what I see when the page loads;

Image

Line 26 is this-

Code: Select all

$SESSION = $_SESSION['POST'];
while line 37 is this-

Code: Select all

$includefile = $start_of_script_include;
by frankus
Wed Jul 14, 2010 4:49 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

I just want to use google smtp to receive form information.

I will do as you instructed and get back to you.

Thanks for your patience with me.
by frankus
Wed Jul 14, 2010 4:02 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

This means that there is a error in the page code, for some reason. I would need to see the PUBLISHED page code (full, with its php code) Check them out here- http://www.mediafire.com/?3yzx2izxhcl2ro0 Another possible reason could be the php version running on the account, as some hosts run php 4 b...
by frankus
Wed Jul 14, 2010 2:27 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

i did it but now you see a blank page after pressing submit. And no email arrives.
by frankus
Wed Jul 14, 2010 1:13 pm
Forum: Share self-made extensions with other users of WYSIWYG Web Builder
Topic: ***UPDATED*** DB Technosystems Form Processor 02/09/2011
Replies: 766
Views: 841038

DB Technosystems Form Processor problem

No matter what I did, DB Technosystems Form Processor is not working for me. When you fill all info and click Submit, i see; The entered code was wrong. Go Back I followed the manual instruction exactly. I have tried it in different hosting sites and configured it differently but still, it did not w...