Copy link to clipboard
Copied
The database I built for the website in question, http://www.socalda.org contains meeting infomation, General meeting info, location, focus, and contact. There are different recordsets for different pages.
I have pages for meetings on days of the week, time of day, and counties and cities.
I just entered a new meeting to my database and it seems that the contact info is not coming out correctly.
I thought it was pulling the wrong contact info but I am now satisfied that what is actually happening is the layout on my pages, for the results, is bad.
When I test this SQL query both in PHPMyAdmin and Dreamweaver it works fine. When I pull the page up It only shows 9 records.
I have upped the repeat to 20 in the Server Behaviors tab and it is still the same.
Here is the code for this page:
<?php require_once('Connections/connda.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$maxRows_wed_meet = 20;
$pageNum_wed_meet = 0;
if (isset($_GET['pageNum_wed_meet'])) {
$pageNum_wed_meet = $_GET['pageNum_wed_meet'];
}
$startRow_wed_meet = $pageNum_wed_meet * $maxRows_wed_meet;
mysql_select_db($database_connda, $connda);
$query_wed_meet = "SELECT mstr_meeting.NAME, mstr_meeting.ROOM_NAME, TIME_FORMAT(mstr_meeting.start_time,'%l:%i %p') AS TIME, mstr_meeting.DURATION, mstr_meeting.DAY_OF_WEEK, mstr_meeting.MEETING_NOTES, mstr_location.BUILDING_NAME, mstr_location.STREET_ADDRESS, mstr_location.CITY, mstr_location.ZIP_CODE, mstr_location.SPEC_DIRECTIONS, mstr_location.MAP_URL, mstr_contact.CNCT_FNAME, mstr_contact.CNCT_PHONE, group_concat(mstr_feature.DESCR) AS DESCR
FROM (((((mstr_meeting INNER JOIN mstr_location ON mstr_meeting.LID = mstr_location.LID)
LEFT JOIN mstr_meeting_contact ON mstr_meeting.MID = mstr_meeting_contact.MID)
LEFT JOIN mstr_contact ON mstr_meeting_contact.CID = mstr_contact.CID)
LEFT JOIN mstr_meeting_feature ON mstr_meeting.MID = mstr_meeting_feature.MID)
LEFT JOIN mstr_feature ON mstr_meeting_feature.FID = mstr_feature.FID)
LEFT JOIN mstr_days ON mstr_meeting.DAY_OF_WEEK = mstr_days.DAY
WHERE mstr_meeting.DAY_OF_WEEK = 'WE'
GROUP BY mstr_meeting.NAME, mstr_meeting.ROOM_NAME, mstr_meeting.start_time, mstr_meeting.DURATION, mstr_meeting.DAY_OF_WEEK, mstr_meeting.MEETING_NOTES, mstr_location.BUILDING_NAME, mstr_location.STREET_ADDRESS, mstr_location.CITY, mstr_location.ZIP_CODE, mstr_location.SPEC_DIRECTIONS, mstr_location.MAP_URL, mstr_contact.CNCT_FNAME, mstr_contact.CNCT_PHONE ORDER BY mstr_days.NO, mstr_meeting.start_time, mstr_meeting.NAME ";
$query_limit_wed_meet = sprintf("%s LIMIT %d, %d", $query_wed_meet, $startRow_wed_meet, $maxRows_wed_meet);
$wed_meet = mysql_query($query_limit_wed_meet, $connda) or die(mysql_error());
$row_wed_meet = mysql_fetch_assoc($wed_meet);
if (isset($_GET['totalRows_wed_meet'])) {
$totalRows_wed_meet = $_GET['totalRows_wed_meet'];
} else {
$all_wed_meet = mysql_query($query_wed_meet);
$totalRows_wed_meet = mysql_num_rows($all_wed_meet);
}
$totalPages_wed_meet = ceil($totalRows_wed_meet/$maxRows_wed_meet)-1;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Wednesday DA Meetings</title>
<link href="styles/daone.css" rel="stylesheet" type="text/css" />
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
/* Give the menu bar a width and set the margins to "auto"
* so that the browser does the centering.
*/
ul.MenuBarHorizontal {
width: 50.2em;
margin: auto;
}
/* Center the text within all menu item links.
*/
ul.MenuBarHorizontal a {
text-align: center;
background-color:#FC9;
}
/* Set the the alignment back to left for any
* menu item links that are in a sub menu.
*/
ul.MenuBarHorizontal ul a {
text-align: left;
}
-->
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
</head>
<body >
<div id="container">
<div id="banner"><img src="images/newheadercb2.png" alt="socalda" width="1101" height="180" /></div>
<div id="main_image">
<?php include("includes/menu.php"); ?>
</div><br /><br /><br />
<div id="meeta_col"><h2 align="center">Meeting Lists</h2>
<?php include("includes/menu2.php"); ?>
</div>
<div id="meetb_col"><h2 align="center">Wednesday Meetings</h2>
<table class="myTable">
<tr>
<th>NAME</th>
<th>ROOM</th>
<th>TIME</th>
<th>LENGTH</th>
<th>DAY</th>
<th>NOTES</th>
<th>BUILDING</th>
<th>ADDRESS</th>
<th>CITY</th>
<th>ZIP</th>
<th>DIRECTIONS</th>
<th>MAP</th>
<th>CONTACT</th>
<th>PHONE</th>
<th>DESCR</th>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_wed_meet['NAME']; ?></td>
<td><?php echo $row_wed_meet['ROOM_NAME']; ?></td>
<td><?php echo $row_wed_meet['TIME']; ?></td>
<td><?php echo $row_wed_meet['DURATION']; ?></td>
<td><?php echo $row_wed_meet['DAY_OF_WEEK']; ?></td>
<td><?php echo $row_wed_meet['MEETING_NOTES']; ?></td>
<td><?php echo $row_wed_meet['BUILDING_NAME']; ?></td>
<td><?php echo $row_wed_meet['STREET_ADDRESS']; ?></td>
<td><?php echo $row_wed_meet['CITY']; ?></td>
<td><?php echo $row_wed_meet['ZIP_CODE']; ?></td>
<td><?php echo $row_wed_meet['SPEC_DIRECTIONS']; ?></td>
<td><?php echo $row_wed_meet['MAP_URL']; ?></td>
<td><?php echo $row_wed_meet['CNCT_FNAME']; ?></td>
<td><?php echo $row_wed_meet['CNCT_PHONE']; ?></td>
<td><?php echo $row_wed_meet['DESCR']; ?></td>
</tr>
<?php } while ($row_wed_meet = mysql_fetch_assoc($wed_meet)); ?>
</table>
<br /><br />
<hr />
</div>
</div>
</body>
</html>
<?php
mysql_free_result($wed_meet);
?>
I actually should have 10 rows for meetings on Wednesday but still only get nine.
The funny part is the record that shows up in Dreamweaver test and PHPMyAdmin below the newly inserted record has there contact showing up in the newly inserted meeting info but that meeting does not show up at all. It keeps it to nine records.
So the rows in the browser are overlapping for some reason?
I have deleted the new entries and reinserted them to no avail. It still only shows 9 rows. I actually had the rows set to all records and have played with that but it didn't do anything.
If anyone has any pointers to where I can go get info on this issue I would appreciate it.
Thanks.
OK, sounds like something in the data interfering with the HTML. Can you render the page in a browser, and then post the broswer source code to this thread?
Copy link to clipboard
Copied
What happens if you enter 11 records? Does it output 9 or 10? This will tell you if you have an off-by-one coding error. Can you use mysql_num_rows (or equivalent) to see how many rows the query is actually returning?
Copy link to clipboard
Copied
I tried 11 records and it did nothing. I am not quite sure where to put the mysql_num_rows in my code.
When I run the query in Dreamweaver (test of the recordset) it returns 10 rows and the same for PHPMy Admin which is what it is supposed to do. So I am thinking it is the either the Dreamweaver version of the PHP/MYSql query and/or Dreamweaver is messing up somehow.
It happens in all browsers.
As is obvious I am rather new to PHP/MYSql and Dreamweaver itself. I was thinking I might need to write the query code myself and not use the Dreamweaver recordset appliance to pull the data.
Copy link to clipboard
Copied
>I tried 11 records and it did nothing.
So if you enter 11 records that match the criteria, nothing is returned?
When you have 10 records and it only displays 9, which record is missing - first, last, other ?
> I am not quite sure where to put the mysql_num_rows in my code.
You can put it anywhere after the query is executed.
Copy link to clipboard
Copied
I apologize I misspoke when I said nothing happens. What happens when I enter 11 records only 9 come back. I should have said nothing changes.
The record missing is the fourth one. Except the contact from the 4th one takes the place of the contact of the new one I entered. Number 3 record.
I have tried a lot of different ways to try and see mysql_num_rows but a number never shows up.
I even lowered the repeat region to 3 and nothing changed still 9 with the record 3 mixing it up with record 4 in the contact region.
Upon further investigation when I add a:
$results = $mysql_num_rows($query_wed_meet);
echo "the number of rows are:".$results;
The recordset in the bindings panel disappears.
Now i am really lost. oh boy.
Copy link to clipboard
Copied
>The recordset in the bindings panel disappears.
That's expected. When you modify DW generated code, DW no longer recognizes it. Just run the page and get the results - then you can undo your mods. Getting the row count will help determine whether you have a query problem or an output problem.
Copy link to clipboard
Copied
Thanks alot for your assistance but this seems strange to me.
I have tried a lot of different ways to try and see mysql_num_rows but a number never shows up.
Copy link to clipboard
Copied
Put this immediately after the opening <body> tag:
<p>Total records found: <?php echo mysql_num_rows($all_wed_meet); ?></p>
Copy link to clipboard
Copied
Thanks David,
That seemed to work.
I realized thought that I was the problem trying to get this mysql_num_rows to work.
When I did it the way you suggested I still didn't see it working, until I used the preview in Firefox button in DW. I was just trying to see if it worked by pulling up the page and I never saw any results.
Seeing as how I saw it with the preview with button I realized that it probably was working before I just didn't use the preview button. So thanks bregent and David.
So it is returning 10 rows but the browser only displays 9.
Any suggestions for me to learn how to fix that? I think this may be happening on other pages also.
Thanks again for all your help.
Copy link to clipboard
Copied
>Any suggestions for me to learn how to fix that?
Dunno. I'm not a PHP programmer at all, but the code is fairly simple and I don't see anything wrong.
Can you explain this statement in more detail:
"The record missing is the fourth one. Except the contact from the 4th
one takes the place of the contact of the new one I entered. Number 3 record. "
Are you saying that the results in some rows has the wrong data? Can you paste the output of the query and the output on the page to this thread so we can see and compare?
Copy link to clipboard
Copied
| Abundance and Visions: There is enough | NULL | 7:30 AM | 60 | WE | NULL | Radford Hall | 13627 1/2 Victory Blvd | Van Nuys | 91401 | Behind Tequila's Restaurant | <a href="http://maps.yahoo.com/#mvt=m&lat=34.18683... | Susan | (323) 839-8550 | Focus on Vision work |
| "DA Women Stepping Together" | Conference Room | 12:00 PM | 60 | WE | NULL | Westminster Presbyterian Church | 1757 N. Lake Ave | Pasadena | 91104 | enter on Atchison St (1 block south of Woodbury) | <a href="http://maps.yahoo.com/#mvt=m&lat=34.17590... | Rene | (626) 253-2851 | NULL |
| 818 Artist BDA | In the New room | 12:00 PM | 60 | WE | *First Meeting starts November 21 | Faith Presbyterian Church | 5000 Colfax Ave. | Valley Village | 91601 | NE Corner of Colfax and Addison just south of Magn... | <a href="http://maps.yahoo.com/#tt=&q=5000+Colfax+... | Randi | (760) 641-5847 | NULL |
| Wed Noon BDA Meeting | Community RM off pkg level 1 | 12:00 PM | 90 | WE | At far west side of P1 through door with DA sign o... | Sunset Plaza | 8000 W Sunset Blvd (at Cresent Heights) | Los Angeles | 90025 | 90 min free parking with validation from merchant,... | <a href="http://maps.yahoo.com/maps_result?ed=z1mM... | Wally | (310) 659-8188 | NULL |
| Third Step Focus/Speaker | NULL | 6:30 PM | 60 | WE | Hancock Park | Wilshire United Methodist Church | 711 S Plymouth (at Wilshire) | Hancock Park | 90005-3722 | Large Church parking lot available | <a href="http://maps.yahoo.com/py/maps.py?BFCat=&P... | NULL | NULL | NULL |
| Asked and Answered | NULL | 7:00 PM | 90 | WE | Speaker, Q&A, and Sharing | National Council of Jewish Women Building | 543 N Fairfax Ave | Los Angeles | 90036 | Third and Fairfax | <a href="http://maps.google.com/maps?f=q&source=s_... | Tim | (323) 848-8992 | speaker shares expericence, strength, and hope |
| Currency of Hope | NULL | 7:00 PM | 90 | WE | SD University Heights | University Heights | 4545 Park Blvd, Suite 105 | San Diego | 92116 | NULL | <a href="http://maps.yahoo.com/#q=4545+Park+Blvd%2... | Chris | 619-260-8009 | NULL |
| Debtors with Time Issues | 208 | 7:00 PM | 90 | WE | NULL | Glendale Presbyterian Church | 125 S Louise (at Harvard) | Glendale | 91205 | Two blocks E of Brand; one block N of Colorada; ac... | <a href="http://maps.yahoo.com/py/maps.py?BFCat=&P... | Katie | 310.592.6477 | time issues focus,Snacks |
| Long Beach Self-Employed Group (DA/BDA) | Patio room next to main meeting hall. | 7:00 PM | 75 | WE | NULL | Memorial West Alano Club(MWA) | 835 E. 33rd Street | Long Beach | 90755 | Directly across from Target. Enter from rear park... | <a href="http://maps.yahoo.com/#mvt=m&lat=33.81723... | Stewart | (562) 884-6010 | business owners / self employed focus / all DA mem... |
| Living in the Light Visions Meetings | Small Meeting Room | 7:30 PM | 60 | WE | NULL | Radford Hall | 13627 1/2 Victory Blvd | Van Nuys | 91401 | Behind Tequila's Restaurant | <a href="http://maps.yahoo.com/#mvt=m&lat=34.18683... | Jean | (310) 909-9780 | Focus on Vision work |
| NAME | ROOM | TIME | LENGTH | DAY | NOTES | BUILDING | ADDRESS | CITY | ZIP | DIRECTIONS | MAP | CONTACT | PHONE | DESCR |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Abundance and Visions: There is enough | 7:30 AM | 60 | WE | Radford Hall | 13627 1/2 Victory Blvd | Van Nuys | 91401 | Behind Tequila's Restaurant | Map | Susan | (323) 839-8550 | Focus on Vision work | ||
| "DA Women Stepping Together" | Conference Room | 12:00 PM | 60 | WE | Westminster Presbyterian Church | 1757 N. Lake Ave | Pasadena | 91104 | enter on Atchison St (1 block south of Woodbury) | Map | Rene | (626) 253-2851 | ||
| 818 Artist BDA | In the New room | 12:00 PM | 60 | WE | *First Meeting starts November 21 | Faith Presbyterian Church | 5000 Colfax Ave. | Valley Village | 91601 | NE Corner of Colfax and Addison just south of Magnolia. | Map | Randi | (760) 641-5847 | |
| Wed Noon BDA Meeting | Community RM off pkg level 1 | 12:00 PM | 90 | WE | At far west side of P1 through door with DA sign on it. | Sunset Plaza | 8000 W Sunset Blvd (at Cresent Heights) | Los Angeles | 90025 | 90 min free parking with validation from merchant, free parking on Laurel Ave. | Map | Wally | (310) 659-8188 | |
| Third Step Focus/Speaker | 6:30 PM | 60 | WE | Hancock Park | Wilshire United Methodist Church | 711 S Plymouth (at Wilshire) | Hancock Park | 90005-3722 | Large Church parking lot available | Map | ||||
| Asked and Answered | 7:00 PM | 90 | WE | Speaker, Q&A, and Sharing | National Council of Jewish Women Building | 543 N Fairfax Ave | Los Angeles | 90036 | Third and Fairfax | Map | Tim | (323) 848-8992 | speaker shares expericence, strength, and hope | |
| Currency of Hope | 7:00 PM | 90 | WE | SD University Heights | University Heights | 4545 Park Blvd, Suite 105 | San Diego | 92116 | Map | Chris | 619-260-8009 | |||
| Debtors with Time Issues | 208 | 7:00 PM | 90 | WE | Glendale Presbyterian Church | 125 S Louise (at Harvard) | Glendale | 91205 | Two blocks E of Brand; one block N of Colorada; across from public library; park on Louise across from church. | Map | Katie | 310.592.6477 | time issues focus,Snacks | |
| Long Beach Self-Employed Group (DA/BDA) | Patio room next to main meeting hall. | 7:00 PM | 75 | WE | Memorial West Alano Club(MWA) | 835 E. 33rd Street | Long Beach | 90755 | Directly across from Target. Enter from rear parking lot | Map | Stewart | (562) 884-6010 | business owners / self employed focus / all DA members welcome,Speaker on 2nd and 4th week. | |
| Living in the Light Visions Meetings | Small Meeting Room | 7:30 PM | 60 | WE | Radford Hall | 13627 1/2 Victory Blvd | Van Nuys | 91401 | Behind Tequila's Restaurant | Map | Jean | (310) 909-9780 | Focus on Vision work |
I just copied and pasted the results from the webpage and it all shows up! Except you cannot see the white sections on the webpage.
Copy link to clipboard
Copied
OK, sounds like something in the data interfering with the HTML. Can you render the page in a browser, and then post the broswer source code to this thread?
Copy link to clipboard
Copied
Thanks bregent,
After looking at my post below I noticed I did not have the closing quotes around the map link for the third row my new entry. After entering them everything came out fine.
You pointed me to correct place to look for my error.
Thanks again.
The source code for the page is as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns
="http://www.w3.org/1999/xhtml">
<
head
>
<
meta http-equiv="Content-Type" content="text/html; charset=utf-8"
/>
<
title>Wednesday DA Meetings</title
>
<
link href="styles/daone.css" rel="stylesheet" type="text/css"
/>
<
script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script
>
<
link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css"
/>
<
style type
="text/css">
<!--
/* Give the menu bar a width and set the margins to "auto"
* so that the browser does the centering.
*/
ul.MenuBarHorizontal
{
width: 50.2em;margin: auto;}
/* Center the text within all menu item links.
*/
ul.MenuBarHorizontal a
{
text-align: center;background-color:#FC9;}
/* Set the the alignment back to left for any
* menu item links that are in a sub menu.
*/
ul.MenuBarHorizontal ul a
{
text-align: left;}
-->
a:link
{
text-decoration: none;}
a:visited
{
text-decoration: none;}
a:hover
{
text-decoration: none;}
a:active
{
text-decoration: none;}
</
style
>
</
head
>
<
body
>
<
p>Total records found: 10</p
>
<
div id
="container">
<div id="banner"><img src="images/newheadercb2.png" alt="socalda" width="1101" height="180" /></div><div id="main_image"><title>Hollywood, Beverly Hills, & Valley Village</title><
ul id="MenuBar1" class
="MenuBarHorizontal">
<li><a class="MenuBarItemSubmenu" href="/index.php">About DA </a><ul><li><a href="/index.php">Home</a></li><li><a href="/aboutda.php">About DA</a> </li><li><a href="/aboutbda.php">About BDA</a> </li><li><a href="/sitemap.php">Site Map</a></li></ul></li><li><a class="MenuBarItemSubmenu" href="meet.php">Meetings</a><ul><li><a href="meet.php">Meeting List Information</a><ul><li><a href="losameet.php">Los Angeles County</a><ul><li><a href="#">Other Cities</a> <ul><li><a href="/ovlymeet.php">North Hill, Woodland Hills, Sherman Oaks</a></li><li><a href="/pameet.php">Pasadena</a></li><li><a href="/redmeet.php">Redondo Beach</a></li><li><a href="/resmeet.php">Reseda</a></li><li><a href="/smmeet.php">Santa Monica & Venice</a></li><li><a href="/slvrmeet.php">Silverlake</a><li><a href="/vnysmeet.php">Van Nuys</a></li></ul></li> <li><a href="/brntwdmeet.php">Brentwood</a> </li><li><a href="/burmeet.php">Burbank</a></li><li><a href="/cumeet.php">Culver City</a></li><li><a href="/glenmeet.php">Glendora & Glendale</a></li><li><a href="/hancmeet.php">Hancock Park</a></li><li><a href="/holmeet.php">Hollywood, Beverly Hills, & Valley Village</a></li><li><a href="/lbmeet.php">Long Beach</a></li><li><a href="/lameet.php">Los Angeles</a></li></ul></li><li><a href="/ocmeet.php">Orange County</a></li><li><a href="/rvmeet.php">Riverside County</a></li><li><a href="/sdmeet.php">San Diego County</a></li><li><a href="/sbmeet.php">Santa Barbara County</a></li><li><a href="/sbemeet.php">San Bernardino County</a></li><li><a href="/vcmeet.php">Ventura County</a></li><li><a href="/slomeet.php">Fresno, San Luis Obispo Counties</a></li></ul></li><li><a href="/mp3.php">Speakers MP3</a></li><li><a href="/mtgResources.php">Meeting Resources</a></li><li><a href="/meetfrm.php">Online Meeting Change Form</a></li><li><a href="/seventhtrad.php">7th Tradition</a></li></ul></li> <li><a class="MenuBarItemSubmenu" href="/candb.php">News & Events</a><ul><li><a href="/candb.php">Checks & Balances</a></li><li><a href="/calendar.php">Calendar</a></li><li><a href="http://www.socalda.org/wordpress/?cat=6">Announcements</a></li><li><a href="http://www.socalda.org/wordpress/?cat=7">Retreats</a></li><li><a href="http://www.socalda.org/wordpress/?cat=4">Workshops</a></li></ul></li><li><a class="MenuBarItemSubmenu" href="/literature.php">Literature</a><ul><li><a href="/literature.php">SCDA Literature</a></li><li><a href="/twsttrad.php">The 12 Steps</a></li><li><a href="/twsttrad.php">The 12 Traditions</a></li><li><a href="/contopr.php">The 12 Concepts</a></li><li><a href="/contopr.php">The 12 Tools</a></li><li><a href="/contopr.php">The 12 Promises</a></li></ul></li><li><a class="MenuBarItemSubmenu" href="/servicep.php">DA Service</a><ul><li><a href="/servicep.php">Service Positions</a> </li><li><a href="/scdacontacts.php">SCDA Contacts</a></li><li><a href="spklst.php">Outreach, PRG, and Speaker List</a></li><li><a href="/mediapubinfo.php">Public Information</a></li></ul></li><li><a class="MenuBarItemSubmenu" href="/gso.php">GSO</a><ul><li><a href="http://debtorsanonymous.org">Website</a></li><li><a href="http://socalda.org/wordpress/?cat=3">GSO Announcemts</a></li><li><a href="http://debtorsanonymous.org/literature/literature.htm">GSO Literature</a></li><li><a href="http://debtorsanonymous.org/literature/newsletter.htm">Ways and Means</a></li><li><a href="/gso.php">About GSO</a> </li></ul></li></ul><script type="text/javascript">var
MenuBar1 = new Spry.Widget.MenuBar
(
"MenuBar1",{imgDown:
"/SpryAssets/SpryMenuBarDownHover.gif",imgRight:
"/SpryAssets/SpryMenuBarRightHover.gif"});</
script>
</div><br /><br /><br /><div id="meeta_col"><h2 align="center">Meeting Lists</h2><table align="center" border="4" bordercolor="#FFCC00"><tr><
td align
="left">
<ul><li><a href="/losameet.php">Los Angeles County</a> </li><li><a href="/ocmeet.php">Orange County</a></li><li><a href="/rvmeet.php">Riverside County</a></li><li><a href="/sdmeet.php">San Diego County</a></li><li><a href="/sbmeet.php">Santa Barbara County</a></li><li><a href="/sbemeet.php">San Bernardino County</a></li><li><a href="/vcmeet.php">Ventura County</a></li><li><a href="/slomeet.php">Fresno, San Luis Obispo Counties</a></li></ul></td></tr></
table> </div
>
<div id="meetb_col"><h2 align="center">Wednesday Meetings</h2><table class="myTable"><tr><th>NAME</th><th>ROOM</th><th>TIME</th><th>LENGTH</th><th>DAY</th><th>NOTES</th><th>BUILDING</th><th>ADDRESS</th><th>CITY</th><th>ZIP</th><th>DIRECTIONS</th><th>MAP</th><th>CONTACT</th><th>PHONE</th><th>DESCR</th></tr><tr><td>Abundance and Visions: There is enough</td><td></td><td>7:30 AM</td><td>60</td><td>WE</td><td></td><td>Radford Hall</td><td>13627 1/2 Victory Blvd</td><td>Van Nuys</td><td>91401</td><td>Behind Tequila's Restaurant</td><td><a href="http://maps.yahoo.com/#mvt=m&lat=34.186839&lon=-118.4296&zoom=16&q1=13627%201%2F2%20Victory%20Blvd%2...">Map</a></td><td>Susan</td><td>(323) 839-8550</td><td>Focus on Vision work</td></tr><tr><td>"DA Women Stepping Together"</td><td>Conference Room</td><td>12:00 PM</td><td>60</td><td>WE</td><td></td><td>Westminster Presbyterian Church</td><td>1757 N. Lake Ave</td><td>Pasadena</td><td>91104</td><td>enter on Atchison St (1 block south of Woodbury)</td><td><a href="http://maps.yahoo.com/#mvt=m&lat=34.175906&lon=-118.131999&zoom=16&q1=1757%20N.%20Lake%20Ave%2C%20Pa...">Map</a></td><td>Rene</td><td>(626) 253-2851</td><td></td></tr><tr><td>818 Artist BDA</td><td>In the New room</td><td>12:00 PM</td><td>60</td><td>WE</td><td>*First Meeting starts November 21</td><td>Faith Presbyterian Church</td><td>5000 Colfax Ave.</td><td>Valley Village</td><td>91601</td><td>NE Corner of Colfax and Addison just south of Magnolia.</td><td><a href="http://maps.yahoo.com/#tt=&q=5000+Colfax+Ave%2C+Los+Angeles%2C+CA+91601-3602&conf=1&start=1&lat=34.1...>Map</a></td><td>Randi</td>
<td>(760) 641-5847</td>
<td></td>
</tr>
<tr>
<td>Wed Noon BDA Meeting</td>
<td>Community RM off pkg level 1</td>
<td>12:00 PM</td>
<td>90</td>
<td>WE</td>
<td>At far west side of P1 through door with DA sign on it.</td>
<td>Sunset Plaza</td>
<td>8000 W Sunset Blvd (at Cresent Heights)</td>
<td>Los Angeles</td>
<td>90025</td>
<td>90 min free parking with validation from merchant, free parking on Laurel Ave. </td>
<td><a href="
http://maps.yahoo.com/maps_result?ed=z1mMIup_0TpEiE4Fp4V_6cPK1eM-&csz=los+angeles%2C+ca&country=us&new=1&name=&qty=">Map</a></td
>
<td>Wally</td><td>(310) 659-8188</td><td></td></tr><tr><td>Third Step Focus/Speaker</td><td></td><td>6:30 PM</td><td>60</td><td>WE</td><td>Hancock Park</td><td>Wilshire United Methodist Church</td><td>711 S Plymouth (at Wilshire)</td><td>Hancock Park</td><td>90005-3722</td><td>Large Church parking lot available</td><td><a href="http://maps.yahoo.com/py/maps.py?BFCat=&Pyt=Tmap&newFL=Use+Address+Below&addr=711+S+Plymouth&csz=Los...">Map</a></td><td></td><td></td><td></td></tr><tr><td>Asked and Answered</td><td></td><td>7:00 PM</td><td>90</td><td>WE</td><td>Speaker, Q&A, and Sharing</td><td>National Council of Jewish Women Building</td><td>543 N Fairfax Ave</td><td>Los Angeles</td><td>90036</td><td>Third and Fairfax</td><td><a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=543+North+Fairfax+Avenue,+Los+Angeles,+C...">Map</a></td><td>Tim</td><td>(323) 848-8992</td><td>speaker shares expericence, strength, and hope</td></tr><tr><td>Currency of Hope</td><td></td><td>7:00 PM</td><td>90</td><td>WE</td><td>SD University Heights</td><td>University Heights</td><td>4545 Park Blvd, Suite 105</td><td>San Diego</td><td>92116</td><td></td><td><a href="http://maps.yahoo.com/#q=4545+Park+Blvd%2C+San+Diego%2C+CA++92116-2644&conf=1&start=1&lat=32.764414&...">Map</a></td><td>Chris</td><td>619-260-8009</td><td></td></tr><tr><td>Debtors with Time Issues</td><td>208</td><td>7:00 PM</td><td>90</td><td>WE</td><td></td><td>Glendale Presbyterian Church</td><td>125 S Louise (at Harvard)</td><td>Glendale</td><td>91205</td><td>Two blocks E of Brand; one block N of Colorada; across from public library; park on Louise across from church.</td><td><a href="http://maps.yahoo.com/py/maps.py?BFCat=&Pyt=Tmap&newFL=Use+Address+Below&addr=125+S+Louise+&csz=glen...">Map</a></td><td>Katie</td><td>310.592.6477</td><td>time issues focus,Snacks</td></tr><tr><td>Long Beach Self-Employed Group (DA/BDA)</td><td>Patio room next to main meeting hall.</td><td>7:00 PM</td><td>75</td><td>WE</td><td></td><td>Memorial West Alano Club(MWA)</td><td>835 E. 33rd Street</td><td>Long Beach</td><td>90755</td><td>Directly across from Target. Enter from rear parking lot</td><td><a href="http://maps.yahoo.com/#mvt=m&lat=33.817232&lon=-118.182445&zoom=17&q1=835%20E.%2033rd%20Street%2C%20...">Map</a></td><td>Stewart</td><td>(562) 884-6010</td><td>business owners / self employed focus / all DA members welcome,Speaker on 2nd and 4th week.</td></tr><tr><td>Living in the Light Visions Meetings</td><td>Small Meeting Room</td><td>7:30 PM</td><td>60</td><td>WE</td><td></td><td>Radford Hall</td><td>13627 1/2 Victory Blvd</td><td>Van Nuys</td><td>91401</td><td>Behind Tequila's Restaurant</td><td><a href="http://maps.yahoo.com/#mvt=m&lat=34.186839&lon=-118.4296&zoom=16&q1=13627%201%2F2%20Victory%20Blvd%2...">Map</a></td><td>Jean</td><td>(310) 909-9780</td><td>Focus on Vision work</td></tr></table><
br /><br
/>
<hr /></div></
div
>
</
body
>
</
html
>
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more