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.
Search found 37 matches
- Mon Apr 17, 2023 6:06 pm
- Forum: Off Topic Section
- Topic: Display user data from database.
- Replies: 9
- Views: 5254
- Mon Apr 17, 2023 4:12 pm
- Forum: Off Topic Section
- Topic: Display user data from database.
- Replies: 9
- Views: 5254
Re: Display user data from database.
Oh, good to know. Any suggestion?
- Mon Apr 17, 2023 1:33 pm
- Forum: Off Topic Section
- Topic: Display user data from database.
- Replies: 9
- Views: 5254
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 ...
- Mon Apr 17, 2023 12:50 pm
- Forum: Off Topic Section
- Topic: Display user data from database.
- Replies: 9
- Views: 5254
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 ...
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 ...
- Sat Apr 15, 2023 7:39 pm
- Forum: Off Topic Section
- Topic: Display user data from database.
- Replies: 9
- Views: 5254
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?
- Wed Jan 23, 2019 5:37 pm
- Forum: Off Topic Section
- Topic: Help with code
- Replies: 10
- Views: 8533
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:
Just ...
- Wed Jan 23, 2019 12:27 am
- Forum: Off Topic Section
- Topic: Help with code
- Replies: 10
- Views: 8533
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.
- Tue Jan 22, 2019 11:06 pm
- Forum: Off Topic Section
- Topic: Help with code
- Replies: 10
- Views: 8533
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 ...
<?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 ...
- Tue Jan 22, 2019 8:30 pm
- Forum: Off Topic Section
- Topic: Help with code
- Replies: 10
- Views: 8533
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 ...
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 ...
- Tue Jan 22, 2019 5:19 pm
- Forum: Forms
- Topic: Display data from a MySQL database
- Replies: 14
- Views: 17944
Re: Display data from a MySQL database
Great! Thanks!Pablo wrote: Tue Jan 22, 2019 5:00 pm I will investigate if this this can be added in a future release.
- Tue Jan 22, 2019 4:48 pm
- Forum: Forms
- Topic: Display data from a MySQL database
- Replies: 14
- Views: 17944
Re: Display data from a MySQL database
Ok. I understand.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
As I suggested earlier, it would be great to have a paid extension that has the functionality in question.
Thanks for your time.
- Tue Jan 22, 2019 4:19 pm
- Forum: Forms
- Topic: Display data from a MySQL database
- Replies: 14
- Views: 17944
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.
- Tue Jan 22, 2019 3:26 pm
- Forum: Forms
- Topic: Display data from a MySQL database
- Replies: 14
- Views: 17944
Re: Display data from a MySQL database
Ok, great. Thanks!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
- Tue Jan 22, 2019 2:58 pm
- Forum: Forms
- Topic: Display data from a MySQL database
- Replies: 14
- Views: 17944
Re: Display data from a MySQL database
Does Login objects have mySQLi option? I see only mySQL and Flat file.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
- Tue Jan 22, 2019 10:49 am
- Forum: Forms
- Topic: Display data from a MySQL database
- Replies: 14
- Views: 17944
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 ...
<?php
error_reporting(0);
session_start();
if($_SESSION['username'] != '')
{
$mysql_server = 'localhost';
$mysql ...
- Tue Jan 22, 2019 10:36 am
- Forum: Forms
- Topic: Display data from a MySQL database
- Replies: 14
- Views: 17944
Re: Display data from a MySQL database
I wish you could have this as a paid extension.
- Tue Jan 22, 2019 10:13 am
- Forum: Forms
- Topic: Display data from a MySQL database
- Replies: 14
- Views: 17944
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 ...
I'm aware of Dataviewer , Responsivedatatable , Mysqlconnector and Mysqltableeditor but they display data as list or table which I don't want ...
- 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: 1844760
Re: SUGGEST FOR EXTENSION DEVELOPMENT
The demo doesn't show much. Does it have the things I stated I want?[RZ] wrote: Tue Jun 19, 2018 8:28 am have you seen this? http://www.wysiwygwebbuilder.com/forum/ ... 53&t=70102
- 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: 1844760
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 ...
The playlist should also have a search box, for user to search for ...
- Thu Jun 23, 2016 4:00 pm
- Forum: WYSIWYG Web Builder Tips, Tricks, Tutorials and Code Examples
- Topic: Software to Blend Images?
- Replies: 20
- Views: 19614
- 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: 60810
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.
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.
- 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: 60810
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.
- 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: 992969
Re: ***UPDATED*** DB Technosystems Form Processor 16/02/2010
Navaldesign, Happy new year.
Concerning my above posted problem, is there still no solution yet?
Concerning my above posted problem, is there still no solution yet?
- 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: 992969
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 ...
Please dowload them from here- http://www.mediafire.com/?2xtllql6xkeuw
The only file there I modified (I put the GMAIL info) is ...
- Tue Dec 14, 2010 10:12 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: 992969
Re: ***UPDATED*** DB Technosystems Form Processor 16/02/2010
No. let me upload the file for you to see.
- 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: 992969
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 ...
EMAIL FAILED Mailer Error: Language string failed to load: connect ...
- 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: 992969
- 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: 992969
- 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: 992969
- 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: 992969
- 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: 992969
- 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: 992969
- 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: 992969
I did that and this is what I see when the page loads;

Line 26 is this-
while line 37 is this-

Line 26 is this-
Code: Select all
$SESSION = $_SESSION['POST'];
Code: Select all
$includefile = $start_of_script_include;
- 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: 992969
- 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: 992969
- 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: 992969
- 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: 992969
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 ...
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 ...